#include <bits/stdc++.h>
using namespace std;
using ll = long long;
map<string, int> id;
int s = 1;
vector<int> adj[20 * 25000];
int bad[20 * 25000];
char ch[20 * 25000];
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
vector<string> a(n);
string mx = "";
for (auto & x: a) {
cin >> x;
if (x.size() > mx.size()) mx = x;
}
for (int i = 0; i < 20 * 25000; ++i) bad[i] = 0;
for (auto x: a) {
int at = 0;
string cur = "";
for (auto c: x) {
cur += c;
if (id.find(cur) == id.end()) {
adj[at].push_back(s);
id[cur] = s++;
}
at = id[cur];
ch[at] = c;
if (x == mx) bad[at] = 1;
}
bad[at] |= 2;
}
string ans = "";
function<void(int)> dfs = [&] (int x) -> void {
if (x > 0) ans += ch[x];
if (bad[x] & 2) ans += 'P';
for (auto u: adj[x]) {
if (!(bad[u] & 1)) {
dfs(u);
}
}
for (auto u: adj[x]) {
if ((bad[u] & 1)) {
dfs(u);
}
}
ans += '-';
};
dfs(0);
while (ans.back() == '-') ans.pop_back();
cout << ans.size() << '\n';
for (auto x: ans) {
cout << x << '\n';
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
14424 KB |
Output is correct |
2 |
Correct |
6 ms |
14428 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
14428 KB |
Output is correct |
2 |
Correct |
4 ms |
14268 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
14428 KB |
Output is correct |
2 |
Correct |
4 ms |
14428 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
14428 KB |
Output is correct |
2 |
Incorrect |
3 ms |
14428 KB |
didn't print every word |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
14428 KB |
Output is correct |
2 |
Correct |
7 ms |
14740 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
10 ms |
15192 KB |
didn't print every word |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
24 ms |
17500 KB |
didn't print every word |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
63 ms |
21992 KB |
didn't print every word |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
173 ms |
34160 KB |
Output is correct |
2 |
Correct |
399 ms |
62024 KB |
Output is correct |
3 |
Correct |
249 ms |
39404 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
146 ms |
29308 KB |
didn't print every word |
2 |
Halted |
0 ms |
0 KB |
- |