打赏

相关文章

poj3125(优先队列数组实现)

输入&#xff1a; 测试实例 接下了N,M&#xff08;N为打印个数&#xff0c;m为你的打印位置从0开始&#xff09; 接下了N个数表示优先级&#xff08;数字大的优先&#xff09;&#xff1b; 输出打印到M需要打印几份 #include<iostream> #include<cmath>using name…

pku3125

用数组循环模拟队列,将数据备份一份并排序,便于判断队列中的首元素是否是最大的,即是否可以输出. Source: #include<iostream> #include<algorithm> using namespace std; int job[110],pri[110]; int main() { int t,n,p,i,j; for(cin>>t;t>0;--t) { c…

POJ 3125 Printer Queue 模拟队列

POJ 3125 Printer Queue 单纯用数组模拟队列水过了&#xff0c;&#xff0c;没什么好说的。。题目理解了就很好写 #include <stdio.h> #include <string.h> int t; int n, m; int q[205]; int find_max_v() {int max q[0];int max_v 0;for (int i 0; i < n;…

POJ3125--Printer_Queue

题目链接&#xff1a;http://poj.org/problem?id3125 题目大家读一下意思很容易理解&#xff0c;在此就不赘述。本题主要就是考察单链表/队列的简单操作。 算法设计&#xff1a; 1.根据输入创建队列CreateList()函数&#xff0c;然后用addNode()函数向队列上增加结点&#xff…

HDU 3125 Slash

按照题目要求判断就行&#xff0c;注意三种情况的要求。。。 #include<stdio.h> #include<string.h> int main() { int i,j,t,l; char s[55]; while(scanf("%d",&t)!EOF) { getchar(); while(t--){ scanf("%s",s); …

hdu 3125 Slash(模拟)

题目链接&#xff1a;http://acm.hdu.edu.cn/showproblem.php?pid3125 Problem Description The American English slash (/) is a punctuation mark. In the early modern period, in the Fraktur script, which was widespread through Europe in the Middle Ages, one slas…

【队列】poj 3125

/** poj 3125* http://poj.org/problem?id3125* 【队列】此题不适用用 STL 做&#xff0c;反而会是操作麻烦* 思路&#xff1a;找到第一个优先级最高的任务处理掉&#xff0c;其前面的任务插入队尾。* 1. 为了节省空间&#xff0c;实际操作不移动最大优先级任务之前的任务&…

poj3125 Printer Queue

模拟 #include <iostream> #include <stdio.h> #include <string.h>using namespace std; #define N 10004 typedef struct node{int pos,pri; }; node q[N];int pri[10];int main() {int n,t,m,maxx,f,r,po,ans;cin>>t;node tmp;while(t--){cin>&g…

手机版浏览

扫一扫体验

微信公众账号

微信扫一扫加关注

返回
顶部