#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N = 25010;
int child[N][26], dp[N], depth[N], par[N], stop[N];
vector<pair<int,char>> adj[N];
vector<char> ans;
int cnt = 0, n, Node;
string s;
void insertword(string word)
{
int node = 0;
for(auto k : word)
{
if(child[node][k - 'a'] == 0)
{
child[node][k - 'a'] = ++cnt;
adj[node].push_back({cnt, k});
par[cnt] = node;
}
node = child[node][k - 'a'];
}
stop[node]++;
while(node != 0) depth[par[node]] = max(depth[par[node]], depth[node] + 1), node = par[node];
}
bool mmb(pair<int,char> a,pair<int,char> b)
{
return depth[a.first] <= depth[b.first];
}
void DFS(int u)
{
if(stop[u]) ans.push_back('P');
for(auto v : adj[u])
{
Node = child[Node][v.second - 'a'];
ans.push_back(v.second);
DFS(v.first);
}
ans.push_back('-');
}
int32_t main()
{
// freopen("test.inp", "r" ,stdin);
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
for(int i = 1; i <= n; i++)
{
cin >> s;
insertword(s);
}
for(int i = 0; i <= cnt; i++)
sort(adj[i].begin(), adj[i].end(), mmb);
DFS(0);
while(ans.back() == '-') ans.pop_back();
cout << ans.size() <<'\n';
for(auto k : ans) cout << k<<'\n';
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
2648 KB |
Output is correct |
2 |
Correct |
1 ms |
2652 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
2652 KB |
Output is correct |
2 |
Correct |
1 ms |
2648 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
2652 KB |
Output is correct |
2 |
Correct |
1 ms |
2688 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
2652 KB |
Output is correct |
2 |
Correct |
1 ms |
2652 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
2648 KB |
Output is correct |
2 |
Correct |
2 ms |
2652 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
3420 KB |
Output is correct |
2 |
Correct |
3 ms |
3932 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
7776 KB |
Output is correct |
2 |
Runtime error |
11 ms |
15448 KB |
Execution killed with signal 6 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
11 ms |
15452 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
11 ms |
15452 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
12 ms |
15172 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |