poj-2051-Argus

来源:互联网 发布:java接收json对象数组 编辑:程序博客网 时间:2024/06/06 02:24
Argus
Time Limit: 1000MS Memory Limit: 30000KTotal Submissions: 11448 Accepted: 5543

Description

A data stream is a real-time, continuous, ordered sequence of items. Some examples include sensor data, Internet traffic, financial tickers, on-line auctions, and transaction logs such as Web usage logs and telephone call records. Likewise, queries over streams run continuously over a period of time and incrementally return new results as new data arrives. For example, a temperature detection system of a factory warehouse may run queries like the following. 
Query-1: "Every five minutes, retrieve the maximum temperature over the past five minutes." 
Query-2: "Return the average temperature measured on each floor over the past 10 minutes."

We have developed a Data Stream Management System called Argus, which processes the queries over the data streams. Users can register queries to the Argus. Argus will keep the queries running over the changing data and return the results to the corresponding user with the desired frequency. 

For the Argus, we use the following instruction to register a query: 
Register Q_num Period

Q_num (0 < Q_num <= 3000) is query ID-number, and Period (0 < Period <= 3000) is the interval between two consecutive returns of the result. After Period seconds of register, the result will be returned for the first time, and after that, the result will be returned every Period seconds. 

Here we have several different queries registered in Argus at once. It is confirmed that all the queries have different Q_num. Your task is to tell the first K queries to return the results. If two or more queries are to return the results at the same time, they will return the results one by one in the ascending order of Q_num. 

Input

The first part of the input are the register instructions to Argus, one instruction per line. You can assume the number of the instructions will not exceed 1000, and all these instructions are executed at the same time. This part is ended with a line of "#". 

The second part is your task. This part contains only one line, which is one positive integer K (<= 10000). 

Output

You should output the Q_num of the first K queries to return the results, one number per line.

Sample Input

Register 2004 200Register 2005 300#5

Sample Output

20042005200420042005

Source

Beijing 2004


题意:一些任务有编号,时间点,时间点小的先完成,完成任务后时间累加,相同时间比编号,编号小的先完成,给的完成任务的次数,输出这几次分别完成那些任务

方法:优先队列,注重优先队列的构造函数

#include <iostream>#include <queue>using namespace std;struct node{    int qnum, per, time;//qnum编号,per时间点,time累加时间    bool operator < (const node& a) const//这个是重点    {        return time > a.time || (time==a.time && qnum>a.qnum);    }};priority_queue<node>p;int main(){    string s;    node t;    int n;    while(cin >> s && s!="#")    {        cin >> t.qnum >> t.per;        t.time = t.per;        p.push(t);    }    cin >> n;    while(n--)    {        node m = p.top();        p.pop();        cout << m.qnum << endl;        m.time += m.per;        p.push(m);    }    return 0;}