#include<bits/stdc++.h>
#define ll long long
#define st first
#define pii pair<ll,ll>
#define nd second
#define pb push_back
using namespace std;
const int N = 5e5+10;
bool CASE = false;
int child[N];
int trie[N][26]; // trie[i][c] mean node number that contain character c and is a child of node i
int nxt;
bool stop[N];
void add(string s){
int cur = 0;
for(auto u:s){
if(trie[cur][u-'a'] == 0) trie[cur][u-'a'] = ++nxt; // build new node
cur = trie[cur][u-'a']; // go to next node
}
stop[cur] = true; // show that current node is end node
}
vector<char> ans;
void dfs(int node){
if(stop[node]) {
ans.push_back('P');
//ans.push_back('-');
}
vector<pair<int,int>> start;
for(int i = 0; i < 26; i++) start.push_back({child[trie[node][i]],i});
sort(start.begin(),start.end());
for(auto k:start){
if(trie[node][k.second] == 0) continue;
ans.push_back(k.second+'a');
dfs(trie[node][k.second]);
}
ans.push_back('-');
return;
}
void dfs2(int node){
child[node] = 1;
if(stop[node]) return;
for(int k = 0; k < 26; k++){
if(trie[node][k] == 0) continue;
dfs2(trie[node][k]);
child[node] += child[trie[node][k]];
}
return;
}
void solve (){
ll n;
cin >> n;
vector<string> v(n);
for(int i = 0; i < n; i++){
cin >> v[i];
add(v[i]);
}
vector<pair<int,int>> start;
for(int i = 0; i < 26; i++) if(trie[0][i]) {dfs2(trie[0][i]); start.push_back({child[trie[0][i]],i});}
sort(start.begin(),start.end());
for(auto i:start){
if(trie[0][i.second]) {
ans.push_back(i.second+'a');
dfs(trie[0][i.second]);
}
}
while(ans.back() == '-') ans.pop_back();
cout << ans.size() << "\n";
for(auto u:ans){
cout << u << "\n";
}
}
int main(){
ios_base::sync_with_stdio(false);cin.tie(0);
int t = 1;
if(CASE) cin >> t;
while(t--)
{
solve();
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
456 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
1112 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
13 ms |
3160 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
33 ms |
7896 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
84 ms |
18948 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
66 ms |
15052 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |