-
Notifications
You must be signed in to change notification settings - Fork 3
/
runningmom.cpp
166 lines (153 loc) · 3.18 KB
/
runningmom.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/**
* @brief Kattis - NAME
* @author Donald Dong (@donaldong)
* @date MM/DD/YYYY
*
* + TAG
*/
#include <algorithm>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <deque>
#include <iostream>
#include <map>
#include <queue>
#include <regex>
#include <set>
#include <sstream>
#include <stack>
#include <unordered_map>
#include <unordered_set>
#include <vector>
using namespace std;
typedef unsigned int uint;
typedef long long int ll;
typedef unsigned long long int ull;
typedef long double ld;
#define hmap unordered_map
#define hset unordered_set
#define pq priority_queue
#define pb push_back
#define mp make_pair
#define putchar putchar_unlocked
#define rep(i, s, e) for (size_t i = s, fe__ = e; i < fe__; ++i)
inline void scan(int&);
inline void scan(ll&);
inline void print(uint);
inline void print(ull);
inline void print(string&);
struct node {
int i;
vector<node*> in, out;
bool safe = true;
node() {}
node(int i) : i(i) {}
};
hmap<string, node*> M;
node* get(string &s) {
if (M.find(s) != M.end()) return M[s];
int k = M.size();
auto n = new node(k);
M[s] = n;
return n;
}
void dfs() {
stack<node*> S;
for (auto &entry : M) {
if (entry.second->out.empty()) {
entry.second->safe = false;
S.push(entry.second);
}
}
while (!S.empty()) {
auto cur = S.top();
S.pop();
for (auto n : cur->in) {
int count = 0;
for (auto nn : n->out) {
if (nn->safe) ++count;
}
if (!count) {
n->safe = false;
S.push(n);
}
}
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int N;
cin >> N;
while (N--) {
string a, b;
cin >> a >> b;
auto i = get(a);
auto j = get(b);
i->out.pb(j);
j->in.pb(i);
}
dfs();
string city;
while (cin >> city) {
auto k = get(city);
cout << city << " ";
cout << (k->safe ? "safe" : "trapped") << endl;
}
return 0;
}
inline void scan(int &number) {
bool negative = false;
int c;
number = 0;
c = getchar();
if (c=='-') {
negative = true;
c = getchar();
}
for (; (c>47 && c<58); c=getchar()) number = number *10 + c - 48;
if (negative) number *= -1;
}
inline void scan(ll &number) {
bool negative = false;
int c;
number = 0;
c = getchar();
if (c=='-') {
negative = true;
c = getchar();
}
for (; (c>47 && c<58); c=getchar()) number = number *10 + c - 48;
if (negative) number *= -1;
}
inline void print(uint n) {
if (n == 0) {
putchar('0');
return;
}
char buf[11];
int i = 10;
while (n) {
buf[i--] = n % 10 + '0';
n /= 10;
}
while (i < 10) putchar(buf[++i]);
}
inline void print(ull n) {
if (n == 0) {
putchar('0');
return;
}
char buf[20];
int i = 19;
while (n) {
buf[i--] = n % 10 + '0';
n /= 10;
}
while (i < 19) putchar(buf[++i]);
}
inline void print(string &s) {
rep(i, 0, s.length()) putchar(s[i]);
}