# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
739885 | 2023-05-11T14:00:08 Z | Desh03 | Type Printer (IOI08_printer) | C++17 | 58 ms | 36576 KB |
#include <bits/stdc++.h> using namespace std; struct node { node* c[26] = {NULL}; bool endofword; node(bool x) : endofword(x) { }; }; vector<char> ans; struct trie { node* root; trie() : root(new node(false)) { }; void insert(node* &u, int id, string &s) { if (u == NULL) u = new node(false); if (id == s.size()) { u->endofword = true; return; } insert(u->c[s[id] - 'a'], id + 1, s); } void dfs(node* u) { if (u->endofword) ans.push_back('P'); for (int i = 0; i < 26; i++) if (u->c[i] != NULL) { ans.push_back('a' + i); dfs(u->c[i]); } ans.push_back('-'); } void insert(string s) { insert(root, 0, s); } }; signed main() { ios_base::sync_with_stdio(false); cin.tie(0); int n; cin >> n; trie tr; for (int i = 0; i < n; i++) { string s; cin >> s; tr.insert(s); } tr.dfs(tr.root); while (ans.back() == '-') ans.pop_back(); cout << ans.size() << '\n'; for (char c : ans) cout << c << '\n'; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 216 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 1748 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 12 ms | 5960 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 29 ms | 14796 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 58 ms | 36576 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 52 ms | 28592 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |