poj 2051 Argus(优先队列)

题目链接: http://poj.org/problem?id=2051

思路分析:

优先级问题,使用优先队列求解;当执行某个任务后,再增加一个任务到队列中,

该任务的优先级为执行任务的时间加上其时间间隔,如此反复直到求出前K个执行任务。

代码:

#include <iostream>
#include <queue>
using namespace std;

struct Argu
{
    int QNum;
    int period;
    int time;
    bool operator<(const Argu &rhs) const
    {
        if (time > rhs.time)
            return true;
        if (time == rhs.time)
            return QNum > rhs.QNum;
        return false;
    }
};

int main()
{
    int k;
    char tmp[10];
    priority_queue<Argu> heap;

    while (scanf("%s", tmp) != EOF && strcmp(tmp, "#") != 0)
    {
        Argu command;

        scanf("%d%d", &command.QNum, &command.period);
        command.time = command.period;
        heap.push(command);
    }

    scanf("%d", &k);
    for (int i = 0; i < k; ++i)
    {
        Argu ans;

        ans = heap.top();
        heap.pop();
        ans.time += ans.period;
        heap.push(ans);
        printf("%d\n", ans.QNum);
    }

    return 0;
}
时间: 2024-10-24 06:24:47

poj 2051 Argus(优先队列)的相关文章

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

又是一道数据结构题,使用堆来进行权值调整和排序,每次调整都是o(n)的复杂度,非常高效. 第一眼看题觉得可以用优先队列来做,应该也很简单. 事实上多数优先队列都是通过堆来实现的. 写的时候还是出了一些问题: 1.二叉树根节点下标显然不能为0: 2.限界之后若出现扩界要小心: 3.在迭代循环比较的时候,尤其注意到底比较的是谁,别把自己绕晕了. ac代码: #include<iostream> #include<cstdio> #include<cstdlib> #incl

poj 2051.Argus 解题报告

题目链接:http://poj.org/problem?id=2051 题目意思:题目有点难理解,所以结合这幅图来说吧---- 有一个叫Argus的系统,该系统支持一个 Register 命令,输入就是类似样例中的: Register 2004 200 代表编号为 2004 的 Register,每隔 200 个时间单位就会产生一次.2005 同理.然后需要输出前 k 个事件.如果多个事件同时发生,就先输出编号较少的.所以在 600 这个时间上,2004 要比 2005 先输出. 第一次学 rj

Poj 2051 Argus

题意理解: (1)每个注册用户均有一个注册ID和一个时间间隔 (2)针对每隔用户,每隔一个自己的时间间隔该ID打印一次 (3)#说明输入到结尾处,没有用户注册了 (4)最后一行的数字为打印的次数 使用了一个优先权队列,把所有的注册用户放入该队列中,队列的排序按照要出现的时间从小到大排序,如果时间有冲突就按照id升序.每次这个用户id输出后,先把该用户从队列里pop出来,然后把该用户的出现时间加上他的时间间隔,然后再push到优先权队列中,由于这个队列是按照要求排序的,所以每次在队头的那个元素就是

POJ 3614 Sunscreen 优先队列

http://poj.org/problem?id=3614 题目大意: 给你一些母牛,母牛有能容忍日光浴的最小和最大光照强度.每仅仅母牛能够涂一次SPF,SPF能够将母牛能够承受的光照强度固定在某个地方.如今给你母牛的最小和最大值和不同的spf的光照强度及其数量,求最多能够有多少母牛享受日光浴? 思路: 优先队列. 先按母牛最小承受的排好,然后spf的值也从小到大. 接下来用优先队列(栈顶为最小的).对于每一个spf,假设一仅仅母牛的最小值小于等于spf则将其最大值入队.(贪心..如两个母牛一

优先队列(priority_queue)的cmp,POJ(2051)

sort()函数的cmp为函数,priority_queue的cmp为类,具体写法是: struct Node { int i,j; } node[200]; struct cmp { bool operator() (Node a,Node b) { if(a.i==b.i) return a.j<b.j;///j的升序 return a.i<b.i; ///i的升序 } }; priority_queue<Node,vector<Node>,cmp> re; #in

最小堆的维护,POJ(2051)

题目链接:http://poj.org/problem?id=2051 ///维持最小堆(优先队列)POJ2051 #include <iostream> #include <string> using namespace std; struct Node { int Now; ///出堆的时间 int id; int p; ///时间间隔 }; Node node [3001]; int K; ///输出个数 void down (Node H[],int s,int m) {

LA-3135 - Argus(优先队列)

3135 - Argus A data stream is a real-time, continuous, ordered sequence of items. Some examples include sensordata, Internet traffic, financial tickers, on-line auctions, and transaction logs such as Web usage logsand telephone call records. Likewise

poj 2442 Sequence 优先队列的运用

题意: 给m行,每行n个数,从每行取一个数计算和,求前n小的和. 分析: 优先队列的运用,主要是make_heap,pop_heap,push_heap三个STL函数的用法. 代码: //poj 2442 //sep9 #include <iostream> #include <algorithm> using namespace std; const int maxN=2048; int a[maxN],b[maxN],sum[maxN]; int main() { int ca

POJ 3253-Fence Repair(优先队列)

题目地址:POJ 3253 题意:有一个农夫要把一个木板钜成n块给定长度的小木板,每次锯都要收取一定费用,这个费用就是当前锯的这个木版的长度,求最小费用. 思路:每次将两个当前的最小值的和放入优先队列中,然后直到剩下一个数为止. #include <stdio.h> #include <math.h> #include <string.h> #include <stdlib.h> #include <iostream> #include <