-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path!01203.cpp
66 lines (58 loc) · 1.73 KB
/
!01203.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//Juez: Online Judge
//Compilador C++11
//Online Judge ID: 1134306 (User: Chulz)
#include <bits/stdc++.h>
using namespace std;
// Comparador custom. Si el tiempo del 1er elemento es igual
// al del 2do, ordena segun su ID. Si no, ordena segun su tiempo
struct compare
{
bool operator()(const pair<pair<int, int>, int>& a, const pair<pair<int, int>, int>& b)
{
if(a.first.first == b.first.first)
return a.second > b.second;
return a.first.first > b.first.first;
}
};
int main()
{
priority_queue<pair<pair<int, int>, int>, vector<pair<pair<int, int>, int>>, compare> qrs;
// input
string null;
int Q_num;
int peri;
while(true)
{
cin >> null;
if(null == "#") break;
cin >> Q_num >> peri;
auto auxP = make_pair(peri, peri);
qrs.push(make_pair(auxP, Q_num));
}
int k;
cin >> k;
// output
int time = 0;
/**
* Los datos en la queue tienen un pair compuesto por un pair de ints y un int:
* pair.first.first: Cuando "time" sea igual a este numero, el ID de este elemento se escribira.
* pair.first.second: El tiempo de ejecucion segun programa. Cuando el elemento se escriba, "pair.first.first"
* aumentara en "pair.first.second".
* pair.second: ID del elemento.
*/
while(true)
{
time = qrs.top().first.first;
if(time == qrs.top().first.first)
{
auto aux = qrs.top();
qrs.pop();
cout << aux.second << endl;
aux.first.first += aux.first.second;
qrs.push(aux);
k--;
}
if(!k) break;
}
return 0;
}