Submission #1000106

#TimeUsernameProblemLanguageResultExecution timeMemory
1000106vjudge1Type Printer (IOI08_printer)C++17
10 / 100
338 ms109136 KiB
#include "bits/stdc++.h" using namespace std; #define int long long const int sz = 2e5 + 5; const int inf = 1e18; int trie[32 * sz][26]; int depth[32 * sz]; int leaf[32 * sz]; int nxt = 0, cnt = 0; char ch[sz]; vector<int> adj[sz]; vector<char> res; int n; struct Trie { void add(string s) { int root = 0; for(char c : s) { int child = c - 'a'; if (!trie[root][child]) { trie[root][child] = ++nxt; adj[root].push_back(trie[root][child]); ch[trie[root][child]] = c; } root = trie[root][child]; depth[root] = max(depth[root], (int)s.size() - (&c - &s.front())); } leaf[root] = true; } void dfs(int node) { if (node) res.push_back(ch[node]); if (leaf[node]) res.push_back('P'), cnt++; for(int to : adj[node]) dfs(to); if (cnt != n) res.push_back('-'); } }; void solve() { cin >> n; Trie tree; for(int i = 1; i <= n; i++) { string s; cin >> s; tree.add(s); } for(int i = 0; i <= nxt; i++) sort(adj[i].begin(), adj[i].end(), [&](int a, int b) { return depth[a] < depth[b]; }); tree.dfs(0); cout << res.size() << endl; for(char c : res) cout << c << endl; } signed main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); int t = 1; // cin >> t; for(int i = 1; i <= t; i++) solve(); }
#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...