# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
114525 | 2019-06-01T16:02:40 Z | popovicirobert | Type Printer (IOI08_printer) | C++14 | 76 ms | 36528 KB |
#include <bits/stdc++.h> #define lsb(x) (x & (-x)) #define ll long long #define ull unsigned long long // 217 // 44 using namespace std; struct Trie { Trie *son[26]; int mx, cnt; Trie() { memset(son, 0, sizeof(son)); mx = cnt = 0; } }; Trie *root = new Trie; void add(Trie *nod, string &str, int p) { if(p < str.size()) { char ch = str[p] - 'a'; if(nod -> son[ch] == NULL) { nod -> son[ch] = new Trie; } add(nod -> son[ch], str, p + 1); nod -> mx = max(nod -> mx, nod -> son[ch] -> mx + 1); } else { nod -> cnt++; } } string sol; void dfs(Trie *nod) { int id = -1; for(int ch = 0; ch < 26; ch++) { if(nod -> son[ch] == NULL) { continue; } if(nod -> son[ch] -> mx + 1 == nod -> mx) { id = ch; } } if(id == -1) { while(nod -> cnt > 0) { sol.push_back('P'); nod -> cnt--; } return ; } for(int ch = 0; ch < 26; ch++) { if(id != ch && nod -> son[ch] != NULL) { sol.push_back(ch + 'a'); dfs(nod -> son[ch]); sol.push_back('-'); } } sol.push_back(id + 'a'); dfs(nod -> son[id]); sol.push_back('-'); } int main() { //ifstream cin("A.in"); //ofstream cout("A.out"); int i, n; ios::sync_with_stdio(false); cin.tie(0), cout.tie(0); cin >> n; string str; for(i = 0; i < n; i++) { cin >> str; add(root, str, 0); } dfs(root); while(sol.back() == '-') { sol.pop_back(); } cout << sol.size() << "\n"; for(auto it : sol) { cout << it << "\n"; } //cin.close(); //cout.close(); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Correct | 2 ms | 256 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Correct | 3 ms | 384 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 384 KB | didn't print every word |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Incorrect | 2 ms | 384 KB | didn't print every word |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 512 KB | didn't print every word |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 1920 KB | didn't print every word |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 13 ms | 5988 KB | didn't print every word |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 31 ms | 14736 KB | didn't print every word |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 76 ms | 36528 KB | didn't print every word |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 61 ms | 28564 KB | didn't print every word |
2 | Halted | 0 ms | 0 KB | - |