# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1022620 | 2024-07-13T19:33:47 Z | subrat0018 | Type Printer (IOI08_printer) | C++17 | 600 ms | 54064 KB |
#include <bits/stdc++.h> using namespace std; #define nline "\n" class Node{ public: bool word; vector<Node*> links; Node(){ word = false; links.resize(26, nullptr); } }; class Trie{ public: Node *root; Trie(){ root = new Node(); } void insert(string &s){ Node *node = root; for(auto &val: s){ if(!node->links[val - 'a']){ node->links[val - 'a'] = new Node(); } node = node->links[val - 'a']; } node->word = true; } }; vector<char> ans; map<Node *, int> height; void dfs(Node *n){ if(!n) return; height[n] = 1; for(int i=0;i<26;i++){ if(n->links[i]){ dfs(n->links[i]); height[n] = max(height[n], 1 + height[n->links[i]]); } } } Node *curr; bool cmp(int i, int j){ return height[curr->links[i]] < height[curr->links[j]]; } void dfs2(Node *n){ if(!n) return; if(n->word){ ans.push_back('P'); } int arr[26]; curr = n; iota(arr, arr+26, 0); sort(arr, arr+26,cmp); for(int i=0;i<26;i++){ if(!n->links[arr[i]])continue; ans.push_back(arr[i] + 'a'); dfs2(n->links[arr[i]]); ans.push_back('-'); } } void solve() { int n;cin>>n; Trie t; for(int i=0;i<n;i++){ string s; cin>>s; t.insert(s); } dfs(t.root); dfs2(t.root); while(ans.size() && ans.back() == '-')ans.pop_back(); cout<<ans.size()<<nline; for(auto &val: ans) cout<<val<<nline; cout<<nline; } int main() { #ifndef ONLINE_JUDGE freopen("debug.txt", "w", stderr); #endif ios_base::sync_with_stdio(false); cin.tie(NULL); int t = 1; // cin>>t; // prec(); for (int i = 1; i <= t; i++) { // cout<<"Case "<<i<<": "; solve(); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Expected EOF |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Expected EOF |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | Expected EOF |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | Expected EOF |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 604 KB | Expected EOF |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 17 ms | 2648 KB | Expected EOF |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 74 ms | 8788 KB | Expected EOF |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 206 ms | 21720 KB | Expected EOF |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 600 ms | 54064 KB | Expected EOF |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 445 ms | 42188 KB | Expected EOF |
2 | Halted | 0 ms | 0 KB | - |