UVA 1203 - Argus(优先队列)

Posted lxjshuju

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVA 1203 - Argus(优先队列)相关的知识,希望对你有一定的参考价值。

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(优先队列)的主要内容,如果未能解决你的问题,请参考以下文章

uva 1203(优先队列)

POJ 2051 argus(简单题,堆排序or优先队列)

E - Argus (UVALive - 3135)

UVA 11573 - Ocean Currents(BFS+优先队列)

uvalive 3135 Argus

优先队列-UVA10603