# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
390202 | 2021-04-15T14:44:54 Z | parsabahrami | Type Printer (IOI08_printer) | C++17 | 185 ms | 52916 KB |
/* There's someone in my head but it's not me */ #include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<int, int> pii; #define SZ(x) (int) x.size() #define F first #define S second const int N = 5e5 + 10; int nxt[26][N], M[N], dp[N], H[N], n, tim, tar; char S[N]; vector<char> ret; void addtrie(char* x) { int v = 0; for (int i = 0; x[i]; i++) { int c = x[i] - 'a'; if (!nxt[c][v]) nxt[c][v] = ++tim, H[tim] = H[v] + 1; v = nxt[c][v]; } M[v] = 1; } void preDFS(int v) { dp[v] = (v == tar); for (int i = 0; i < 26; i++) if (nxt[i][v]) { preDFS(nxt[i][v]); dp[v] |= dp[nxt[i][v]]; } } void DFS(int v) { if (M[v]) ret.push_back('P'); int u = -1; for (int i = 0; i < 26; i++) if (nxt[i][v] && !dp[nxt[i][v]]) ret.push_back('a' + i), DFS(nxt[i][v]), ret.push_back('-'); else if (nxt[i][v]) u = i; if (~u) ret.push_back('a' + u), DFS(nxt[u][v]); } int main() { scanf("%d", &n); for (int i = 1; i <= n; i++) scanf("%s", S + 1), addtrie(S + 1); tar = max_element(H, H + N) - H; preDFS(0); DFS(0); printf("%d\n", SZ(ret)); for (char c : ret) printf("%c\n", c); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 460 KB | Output is correct |
2 | Correct | 2 ms | 336 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 460 KB | Output is correct |
2 | Correct | 2 ms | 460 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 460 KB | Output is correct |
2 | Correct | 2 ms | 460 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 460 KB | Output is correct |
2 | Correct | 2 ms | 332 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 588 KB | Output is correct |
2 | Correct | 4 ms | 844 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 6 ms | 1228 KB | Output is correct |
2 | Correct | 6 ms | 1484 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 11 ms | 3476 KB | Output is correct |
2 | Correct | 28 ms | 6980 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 28 ms | 8212 KB | Output is correct |
2 | Correct | 10 ms | 2124 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 77 ms | 19752 KB | Output is correct |
2 | Correct | 159 ms | 44472 KB | Output is correct |
3 | Correct | 97 ms | 23020 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 72 ms | 15484 KB | Output is correct |
2 | Correct | 185 ms | 52916 KB | Output is correct |
3 | Correct | 101 ms | 26172 KB | Output is correct |
4 | Correct | 132 ms | 49976 KB | Output is correct |