Submission #1000129

#TimeUsernameProblemLanguageResultExecution timeMemory
1000129amin_2008Type Printer (IOI08_printer)C++17
100 / 100
983 ms154812 KiB
#include "bits/stdc++.h" using namespace std; #define int long long const int sz = 18e5 + 5; const int inf = 1e18; int trie[sz][26]; int depth[sz]; int leaf[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(int i = 0; i < s.size(); i++) { int child = s[i] - 'a'; if (!trie[root][child]) { trie[root][child] = ++nxt; adj[root].push_back(trie[root][child]); ch[trie[root][child]] = s[i]; } root = trie[root][child]; depth[root] = max(depth[root], (int)s.size() - i); } 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(); }

Compilation message (stderr)

printer.cpp: In member function 'void Trie::add(std::string)':
printer.cpp:24:26: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   24 |         for(int i = 0; i < s.size(); i++)
      |                        ~~^~~~~~~~~~
#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...