码迷,mamicode.com
首页 > 其他好文 > 详细

UVA 1203 - Argus(优先队列)

时间:2014-07-26 02:31:16      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   os   io   re   c   代码   

UVA 1203 - Argus

题目链接

题意:给定一些注册命令,表示每隔时间t,执行一次编号num的指令,注册命令结束后,给定k,输出前k个执行顺序

思路:用优先队列去搞,任务时间作为优先级,每次一个任务出队后,在把它下次执行作为一个新任务入队即可

代码:

#include <cstdio>
#include <cstring>
#include <queue>
using namespace std;

char str[10];

struct Task {
    int t, q, p;
    Task(){}
    Task(int t, int q, int p) {
	this->t = t;
	this->q = q;
	this->p = p;
    }
    bool operator < (const Task& a) const {
	if (t != a.t) return t > a.t;
	return q > a.q;
    }
};

priority_queue<Task> Q;

int main() {
    int a, b;
    while (~scanf("%s", str) && str[0] != '#') {
	scanf("%d%d", &a, &b);
	Q.push(Task(b, a, b));
    }
    int k;
    scanf("%d", &k);
    while (k--) {
	Task now = Q.top();
	Q.pop();
	printf("%d\n", now.q);
	now.t += now.p;
	Q.push(now);
    }
    return 0;
}


UVA 1203 - Argus(优先队列),布布扣,bubuko.com

UVA 1203 - Argus(优先队列)

标签:style   http   color   os   io   re   c   代码   

原文地址:http://blog.csdn.net/accelerator_/article/details/38120831

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!