# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
303785 | 2020-09-20T16:03:01 Z | FlashGamezzz | Type Printer (IOI08_printer) | C++17 | 103 ms | 31856 KB |
#include <iostream> #include <cstdlib> #include <cstdio> #include <fstream> #include <algorithm> #include <string> #include <utility> #include <vector> #include <queue> using namespace std; vector<int> lets[500000]; bool endb[500000] = {}; int length[500000] = {}, sz = 0; vector<char> ans; void add(int c, int i, string s){ if (i == s.length()){ endb[c] = true; return; } int l = int(s[i])-97; if (lets[c][l] == 0){ vector<int> t; t.resize(26, 0); lets[sz] = t; lets[c][l] = sz; sz++; } add(lets[c][l], i+1, s); length[c] = max(length[lets[c][l]]+1, length[c]); } void solve(long c){ if (endb[c]){ ans.push_back('P'); } bool lu = false; int dl = -1; for (int i = 0; i < 26; i++){ if (lets[c][i] != 0){ if (!lu && length[lets[c][i]] == length[c]-1){ lu = true; dl = i; } else { ans.push_back(char(i+97)); solve(lets[c][i]); ans.push_back('-'); } } } if (dl > -1){ ans.push_back(char(dl+97)); solve(lets[c][dl]); ans.push_back('-'); } } int main(){ int n; cin >> n; vector<int> t; t.resize(26, 0); lets[sz] = t; sz++; for (int i = 0; i < n; i++){ string s; cin >> s; add(0, 0, s); } solve(0); int count = ans.size(); while (ans[count-1] == '-'){ count--; } printf("%d \n", count); for (int i = 0; i < count; i++){ printf("%c \n", ans[i]); } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 8 ms | 12032 KB | Expected EOLN |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 8 ms | 12032 KB | Expected EOLN |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 8 ms | 12160 KB | Expected EOLN |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 8 ms | 12032 KB | Expected EOLN |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 8 ms | 12160 KB | Expected EOLN |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 11 ms | 12928 KB | Expected EOLN |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 22 ms | 15232 KB | Expected EOLN |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 45 ms | 19964 KB | Expected EOLN |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 103 ms | 31856 KB | Expected EOLN |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 98 ms | 27548 KB | Expected EOLN |
2 | Halted | 0 ms | 0 KB | - |