#include<bits/stdc++.h>
using namespace std;
struct Node{
Node* c[26];
int maxdepth=0;
bool leaf=false;
Node(){
for(int i=0;i<26;i++) c[i]=nullptr;
}
};
Node* root=new Node();
void insert(string s){
Node* node=root;
int n=s.length();
for(int i=0;i<n;i++){
if(node->c[s[i]-'a']==nullptr) node->c[s[i]-'a']=new Node();
node=node->c[s[i]-'a'];
node->maxdepth=max(node->maxdepth,n);
}
node->leaf=true;
}
int k;
vector<char> op;
void dfs(Node* node){
int best=-1;
int mx=-1;
for(int i=0;i<26;i++){
if(node->c[i]!=nullptr){
if(node->c[i]->maxdepth>mx){
mx=node->c[i]->maxdepth;
best=i;
}
}
}
if(node->leaf){
k--;
op.push_back('P');
}
for(int j=0;j<26;j++){
if(node->c[j]){
if(j==best) continue;
op.push_back(char('a'+j));
dfs(node->c[j]);
if(k!=0)
op.push_back('-');
}
}
if(best!=-1){
op.push_back(char(best+'a'));
dfs(node->c[best]);
if(k!=0) op.push_back('-');
}
}
signed main(){
int n;
cin>>n;
k=n;
string s;
for(int i=0;i<n;i++){
cin>>s;
insert(s);
}
dfs(root);
cout<<op.size()<<"\n";
for(auto x:op){
cout<<x<<"\n";
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
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 |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
2 ms |
1116 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
1884 KB |
Output is correct |
2 |
Correct |
4 ms |
2140 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
5980 KB |
Output is correct |
2 |
Correct |
18 ms |
12552 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
23 ms |
14684 KB |
Output is correct |
2 |
Correct |
11 ms |
3332 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
48 ms |
36556 KB |
Output is correct |
2 |
Correct |
99 ms |
83220 KB |
Output is correct |
3 |
Correct |
58 ms |
42668 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
38 ms |
28364 KB |
Output is correct |
2 |
Correct |
146 ms |
99104 KB |
Output is correct |
3 |
Correct |
71 ms |
48448 KB |
Output is correct |
4 |
Correct |
114 ms |
93440 KB |
Output is correct |