#include <bits/stdc++.h>
// author : a1abay
using namespace std;
#define int ll
#define all(v) v.begin(), v.end()
typedef long long ll;
typedef long double ld;
const int inf = 1e9 + 7;
const int inff = (int)1e18 + 7;
const int sz = 25e3 + 5;
int n, k, x, cnt;
vector<vector<int>> t;
vector<int> mx, d;
vector<bool> w;
vector<vector<array<int, 3>>> g;
string s;
void add(int ind, int cur)
{
while(ind < s.size())
{
if(t[cur][s[ind] - 'a']) cur = t[cur][s[ind] - 'a'];
else cur = t[cur][s[ind] - 'a'] = ++x;
ind++;
}
w[cur] = 1;
}
void dfs(int v)
{
bool lf = 1;
for(int i = 0; i < 26; i++)
{
if(!t[v][i]) continue;
lf = 0;
int c = t[v][i];
d[c] = d[v] + 1;
dfs(c);
mx[v] = max(mx[v], mx[c]);
g[v].push_back({mx[c], c, i});
}
sort(all(g[v]));
if(lf) mx[v] = d[v];
}
void calc(int v, char c)
{
cnt++;
cout << c << endl;
if(w[v]) cout << "P" << endl;
for(auto i : g[v])
{
calc(i[1], char(i[2] + 'a'));
}
if(cnt < x)cout << "-" << endl;
}
void solve()
{
cin >> n;
t.resize(n * 26, vector<int>(26, 0));
mx.resize(n * 26, 0);
w.resize(n * 26, 0);
d.resize(n * 26, 0);
g.resize(n * 26);
for(int i = 0; i < n; i++)
{
cin >> s;
add(0, 0);
}
dfs(0);
cout << x * 2 - mx[0] + n << endl;
for(auto i : g[0])
{
calc(i[1], char(i[2] + 'a'));
}
}
signed main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t = 1;
// cin >> t;
while(t--)
{
solve();
}
}
Compilation message
printer.cpp: In function 'void add(ll, ll)':
printer.cpp:25:15: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
25 | while(ind < s.size())
| ~~~~^~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
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 |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
1 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 |
2 ms |
1180 KB |
Output is correct |
2 |
Correct |
10 ms |
3420 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
30 ms |
6480 KB |
Output is correct |
2 |
Correct |
25 ms |
8116 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
72 ms |
23256 KB |
Output is correct |
2 |
Correct |
145 ms |
46160 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
172 ms |
68688 KB |
Output is correct |
2 |
Correct |
119 ms |
88660 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
439 ms |
137996 KB |
Output is correct |
2 |
Correct |
863 ms |
167412 KB |
Output is correct |
3 |
Correct |
489 ms |
168272 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
392 ms |
188244 KB |
Output is correct |
2 |
Execution timed out |
1033 ms |
199484 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |