#include <bits/stdc++.h>
using namespace std;
int cost[100001], trie[100001][26],timer = 0;
int n;
vector<int> adj[100001];
bool special[100001], finish[100001];
char label[100001];
vector<char> res;
void addString(string s) {
int cur = 0;
for (char c: s) {
int val = c - 'a';
if (!trie[cur][val]) {
trie[cur][val] = ++timer;
adj[cur].emplace_back(timer);
label[timer] = c;
}
cur = trie[cur][val];
}
special[cur] = 1;
}
void DFS_1(int u) {
for (int v: adj[u]) {
DFS_1(v);
if (cost[v]) cost[u] += cost[v];
}
if (!cost[u])
if (special[u]) cost[u] = 1;
}
bool cmp(const int &A, const int &B) {
return cost[A] + adj[A].size() < cost[B] + adj[B].size();
}
void DFS_2(int u) {
sort(adj[u].begin(),adj[u].end(),cmp);
if (special[u]) {
res.emplace_back('P');
n--;
}
for (int v: adj[u]) {
if (!cost[v]) continue;
res.emplace_back(label[v]);
DFS_2(v);
}
if (n) res.emplace_back('-');
}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> n;
string s;
for (int i = 1; i <= n; i++) {
cin >> s;
addString(s);
}
DFS_1(0);
DFS_2(0);
cout << res.size() << '\n';
for (char c: res) cout << c << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
2636 KB |
Output is correct |
2 |
Correct |
2 ms |
2636 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2640 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2636 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
2636 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
2764 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
3660 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
12 ms |
6268 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
19 ms |
11764 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
25 ms |
31948 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
28 ms |
31484 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |