-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path920b_tea_queue.cpp
61 lines (52 loc) · 1.56 KB
/
920b_tea_queue.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
/* Universidade de Brasília
* Departamento de Ciência da Computação
* CIC0169 - Programação Competitiva
* Prof. Dr. Vinicius R. P. Borges
*
* Tópico: Estruturas de Dados Lineares
* Aula: Resolucao do problema
* Educational Codeforces Round 37 (Rated for Div. 2) - B. Tea Queue (https://codeforces.com/problemset/problem/920/B)
*
* POR FAVOR: nao submeter esse código-fonte diretamente no Codeforces
*
* Compilar no terminal: g++ 920b_tea_queue.cpp -std=c++17 -o fila
* Executar: ./fila
* Complexidade: O(t*2*n) no tempo
*/
#include<bits/stdc++.h>
using namespace std;
typedef pair<int,int> pii;
int main(){
int t,n,l,r;
scanf("%d",&t);
while(t--){
scanf("%d",&n);
queue<pii> fila;
int linhatempo = 0;
for(int i = 0; i < n; i++){
scanf("%d %d",&l,&r);
//{l,r} = make_pair(l,r)
fila.push(make_pair(l,r));
}
while(!fila.empty()){
/*pii atual = fila.front();
l = atual.first;
r = atual.second;*/
tie(l,r) = fila.front();
fila.pop();
if(linhatempo <= l){
linhatempo = l;
printf("%d ",l);
linhatempo++; //tempo de uso do bule
}else{
if(linhatempo <= r){ // valeu a pena esperar
printf("%d ",linhatempo);
linhatempo++;
}else // saiu da fila sem o cha
printf("0 ");
}
}
printf("\n");
}
return 0;
}