# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1031740 | 2024-07-23T06:17:38 Z | doducanh | Type Printer (IOI08_printer) | C++14 | 73 ms | 56848 KB |
#include <bits/stdc++.h> using namespace std; const int maxn=2e6+7; string res="";string maxs=""; struct trie { int cnt=0; int t[maxn][30]; int stop[maxn]; void add(string &s){ int curr=0; for(char c:s){ if(t[curr][c-'a'+1]==0)t[curr][c-'a'+1]=++cnt; curr=t[curr][c-'a'+1]; } stop[curr]++; } void dfs(int curr,bool type,int depth=-1){ while(stop[curr]--){ res.push_back('P'); } if(depth==maxs.size()-1)return; if(type==0){ for(int i=1; i<=26; i++) { if(t[curr][i]) { res.push_back((char)i-1+'a'); dfs(t[curr][i],0,depth+1); res.push_back('-'); } } } else{ for(int i=1; i<=26; i++) { if(i==(maxs[depth+1]-'a'+1))continue; if(t[curr][i]) { res.push_back((char)i-1+'a'); dfs(t[curr][i],0,depth+1); res.push_back('-'); } } if(depth+1<maxs.size())res.push_back(maxs[depth+1]); if(t[curr][maxs[depth+1]-'a'+1])dfs(t[curr][maxs[depth+1]-'a'+1],1,depth+1); } } }; trie t; int n; main() { ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); cin>>n; for(int i=1;i<=n;i++){ string s; cin>>s; if(s.size()>maxs.size())maxs=s; t.add(s); } t.dfs(0,1); cout<<res.size()<<"\n"; for(char c:res)cout<<c<<"\n"; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | 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 | 0 ms | 348 KB | Output is correct |
2 | Correct | 1 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 | 344 KB | Output is correct |
2 | Correct | 1 ms | 860 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 1112 KB | Output is correct |
2 | Correct | 2 ms | 1372 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 3672 KB | Output is correct |
2 | Correct | 10 ms | 7264 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 11 ms | 8700 KB | Output is correct |
2 | Correct | 5 ms | 2152 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 27 ms | 21000 KB | Output is correct |
2 | Correct | 59 ms | 47900 KB | Output is correct |
3 | Correct | 33 ms | 24816 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 25 ms | 16688 KB | Output is correct |
2 | Correct | 73 ms | 56848 KB | Output is correct |
3 | Correct | 39 ms | 28144 KB | Output is correct |
4 | Correct | 61 ms | 53520 KB | Output is correct |