Submission #632865

#TimeUsernameProblemLanguageResultExecution timeMemory
632865van_hoangType Printer (IOI08_printer)C++17
0 / 100
36 ms43440 KiB
#include "bits/stdc++.h" using namespace std; #ifndef LOCAL #define debug(...) 86 #endif const int maxN = 1e5 + 5; const int maxC = 26; struct node { int end; node *child[maxC]; node() { end = 0; for (int i = 0; i < maxC; ++i) child[i] = NULL; } }; int nxt; node nodes[maxN]; node *newnode() { return &nodes[nxt++]; } vector<char> res; struct trie { node *root; trie() { root = newnode(); } void insert(node *n, string &s, int pos) { if (pos == (int)s.size()) { n->end = 1; return; } if (!n->child[s[pos] - 'a']) { n->child[s[pos] - 'a'] = newnode(); } insert(n->child[s[pos] - 'a'], s, pos + 1); } void solve(node *n) { if (n->end) res.emplace_back('P'); for (int i = 0; i < maxC; ++i) { if (!n->child[i]) continue; res.emplace_back(char(i + 'a')); solve(n->child[i]); } res.emplace_back('-'); } }; trie T; int N; int main() { ios::sync_with_stdio(0), cin.tie(0); cin >> N; for (int i = 0; i < N; ++i) { string s; cin >> s; T.insert(T.root, s, 0); } T.solve(T.root); cout << (int)res.size() << '\n'; while (res.back() == '-') res.pop_back(); for (auto &x : res) cout << x << '\n'; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...