# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
440541 | 2021-07-02T11:51:37 Z | dxz05 | Type Printer (IOI08_printer) | C++14 | 1000 ms | 69400 KB |
#include <bits/stdc++.h> #pragma GCC optimize("Ofast") using namespace std; #define SZ(x) (int)(x).size() const int MAXN = 6e5 + 3e2; string str[MAXN]; int next_free = 2; int trie[MAXN][27]; bool term[MAXN]; void add(string &s){ int v = 1; for (int i = 0; i < s.size(); i++){ int x = s[i] - 'a'; if (trie[v][x] == 0) trie[v][x] = next_free++; v = trie[v][x]; } term[v] = true; } int idx = 0; string gs; void sort(int v){ if (term[v]) str[++idx] = gs; for (int i = 0; i <= 26; i++){ if (trie[v][i] != 0){ gs += char('a' + i); sort(trie[v][i]); gs.pop_back(); } } } int main(){ ios_base::sync_with_stdio(false); int n; cin >> n; int ind = 0; for (int i = 1; i <= n; i++){ cin >> str[i]; if (str[i].size() > str[ind].size()) ind = i; } string longest = str[ind]; for (int i = 1; i <= n; i++){ int j = 0; while (j < str[i].size() && j < longest.size() && str[i][j] == longest[j]) j++; if (j) str[i] = string(j, '{') + str[i]; add(str[i]); } sort(1); vector<char> ans; for (int it = 1; it <= n; it++){ int j = 0; while (j < str[it].size() && str[it][j] == '{') j++; str[it].erase(0, j); int m = str[it - 1].size(), k = str[it].size(); if (m > k){ int need = m - k; while (need--) ans.push_back('-'); m = k; } int cnt = 0; for (int i = 0; i < min(m, k); i++){ if (str[it - 1][i] == str[it][i]) cnt++; else break; } int need = max(0, m - cnt); while (need--){ ans.push_back('-'); } for (int i = cnt; i < k; i++){ ans.push_back(str[it][i]); } ans.push_back('P'); } cout << ans.size() << endl; for (char c : ans) cout << c << endl; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 10 ms | 19020 KB | Output is correct |
2 | Correct | 10 ms | 19112 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 11 ms | 19020 KB | Output is correct |
2 | Correct | 10 ms | 19020 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 12 ms | 19060 KB | Output is correct |
2 | Correct | 13 ms | 19020 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 11 ms | 19020 KB | Output is correct |
2 | Correct | 11 ms | 19020 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 13 ms | 19140 KB | Output is correct |
2 | Correct | 23 ms | 19532 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 38 ms | 19880 KB | Output is correct |
2 | Correct | 42 ms | 20104 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 115 ms | 21948 KB | Output is correct |
2 | Correct | 212 ms | 25332 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 255 ms | 26352 KB | Output is correct |
2 | Correct | 71 ms | 20876 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 560 ms | 37664 KB | Output is correct |
2 | Execution timed out | 1099 ms | 61472 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 456 ms | 33440 KB | Output is correct |
2 | Execution timed out | 1076 ms | 69400 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |