-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscavhunt.cpp
69 lines (59 loc) · 1.48 KB
/
scavhunt.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
#include <iostream>
#include <vector>
#include <stack>
#include <map>
using namespace std;
vector< vector<int> > ady; //lista de adyacencia
vector<bool> visitado; //para nodos visitados
stack<int> pila;
map<string, int> id;
map<int, string> nombre;
int n;
///Ver todo el recorrido del grafo de acuerdo al orden ingresado en la lista de adyacencia
void dfs(int u){
if (visitado[u])
return;
visitado[u] = true;
for(int v = 0 ; v < ady[u].size() ; ++v)
dfs(ady[u][v]);
pila.push(u);
}
void toposort () {
visitado.clear();
visitado.resize(n);
for (int i = 0 ; i < n ; i++)
if (!visitado[i])
dfs(i);
}
int main(){
int casos;
cin >> casos;
for (int c = 1 ; c <= casos ; c++) {
cin >> n;
int k = 0;
ady.clear();
ady.resize(n);
for (int i = 0 ; i < n-1 ; i++) {
string desde, hasta;
cin >> desde >> hasta;
if (!id.count(desde)) {
nombre[k] = desde;
id[desde] = k++;
}
if (!id.count(hasta)) {
nombre[k] = hasta;
id[hasta] = k++;
}
ady[id[desde]].push_back(id[hasta]);
}
toposort();
cout << "Scenario #" << c << ":" << endl;
while (!pila.empty()) {
int siguiente = pila.top();
pila.pop();
cout << nombre[siguiente] << endl;
}
cout << endl;
}
return 0;
}