-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path!10172.cpp
93 lines (81 loc) · 2.44 KB
/
!10172.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//Juez: Online Judge
//Online Judge ID: 1134306 (User: Chulz)
//Lenguaje: C++11
#include <iostream>
#include <queue>
#include <stack>
using namespace std;
struct estacion
{
int maxq;
queue<int> bplat;
};
struct carrier
{
int estacionAct = 1;
int maxq;
stack<int> bplat;
};
int main()
{
int set, n, s, q;
cin >> set;
int tiempo[set];
for (int j = 0; j < set; j++)
{
tiempo[j] = 0;
cin >> n >> s >> q;
carrier car;
car.maxq = s;
int cargo = 0;
estacion anillo[n];
for (int i = 0; i < n; i++){
anillo[i].maxq = q;
int aux, auxp;
cin >> aux;
while(aux--){
cin >> auxp;
anillo[i].bplat.push(auxp);
cargo++;
}
}
while(cargo)
{
if(car.estacionAct > n) car.estacionAct = 1;
while(!car.bplat.empty())
{// "mientras que tenga cargos en el stack, las saco y las coloco..."
if(car.bplat.top() == car.estacionAct) // "en A si el cargo es del pais de la estacion actual"
{
car.bplat.pop();
tiempo[j]++;
cargo--;
continue;
}
if (anillo[car.estacionAct - 1].maxq != anillo[car.estacionAct - 1].bplat.size()) // "en B si B no esta lleno y el cargo no es de esta estacion"
{
anillo[car.estacionAct - 1].bplat.push(car.bplat.top());
car.bplat.pop();
tiempo[j]++;
continue;
}
break;
}
while(!anillo[car.estacionAct - 1].bplat.empty())
{ // "vuelvo a cargar el stack con lo que esta en B de la estacion si el stack no esta lleno"
if(car.bplat.size() != car.maxq){
car.bplat.push(anillo[car.estacionAct - 1].bplat.front());
anillo[car.estacionAct - 1].bplat.pop();
tiempo[j]++;
continue;
}
break;
}
if(cargo){
car.estacionAct++;
tiempo[j]+= 2;
}
}
}
for (int i = 0; i < set; i++)
cout << tiempo[i] << endl;
}