-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathuva200-rare-order.cpp
57 lines (56 loc) · 1.19 KB
/
uva200-rare-order.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
#include <bits/stdc++.h>
using namespace std;
bool debug = true;
string s1, s2;
bool visited['Z'+5];
vector< vector<int> > graph;
stack<int> s;
void topoSort(int i) {
// cout << "i= " << i << "\n";
visited[i] = true;
vector<int>::iterator it;
for (it = graph[i].begin(); it != graph[i].end(); it++) {
if (!visited[*it]) {
topoSort(*it);
}
}
// cout << i << "\n";
s.push(i);
// cout << s.top() << " ";
}
int main() {
// ifstream cin("mapping-the-route.in");
// ofstream cout("mapping-the-route.out");
ios_base::sync_with_stdio(false);
cin.tie(NULL);
// cin.ignore();
getline(cin, s1);
for (int i = 0; i < 'Z'; i++) {
vector<int> v;
graph.push_back(v);
}
while (getline(cin, s2) && s2[0] != '#') {
// cout << s1 << " and " << s2 << "\n";
for (int i = 0; i < min(s1.size(), s2.size()); i++) {
if (s1[i] != s2[i]) {
// cout << s1[i] << "-->" << s2[i] << "\n";
graph[s1[i]].push_back(s2[i]);
break;
}
}
s1 = s2;
}
for (int i = 'A'; i <= 'Z'; i++) {
visited[i] = false;
}
for (int i = 'A'; i <= 'Z'; i++) {
if (!visited[i] && graph[i].size() > 0) topoSort(i);
}
while (!s.empty()) {
char c = s.top();
cout << c;
s.pop();
}
cout << "\n";
return 0;
}