# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
863004 | duckindog | Vlak (COCI20_vlak) | C++14 | 31 ms | 113500 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// from duckindog wth depression
#include<bits/stdc++.h>
using namespace std;
const int N = 8 * (2e5 + 10);
string a[N], b[N];
int nwt[N][27];
int st[N];
int it, bit;
void add(string x, int y) {
int g = 0;
for (auto ch : x) {
st[g] |= y;
int w = ch - 'a' + 1;
if (!nwt[g][w]) nwt[g][w] = ++it;
g = nwt[g][w];
} st[g] |= y;
return;
}
void dfs(int g = 0) {
for (int i = 0; i <= 26; ++i) {
if (!nwt[g][i]) continue;
char ni = !i ? '0' : char(i + 'a' - 1);
cout << g << " " << nwt[g][i] << " " << ni << "\n";
dfs(nwt[g][i]);
}
return;
}
bool check(int g = 0, bool y = 0) {
bool w = 0;
for (int i = 1; i <= 26; ++i) {
bool ny = 1 - y;
bool trapdoor = 0;
int v = nwt[g][i];
if (ny && st[v] % 2 == 1) trapdoor = 1;
if (!ny && st[v] >= 2) trapdoor = 1;
if (!v || !trapdoor) continue; w = 1;
if (!y && check(v, ny)) return 1;
if (y && !check(v, ny)) return 0;
}
return y;
}
int32_t main() {
cin.tie(0)->sync_with_stdio(0);
if (fopen("duck.inp", "r")) {
freopen("duck.inp", "r", stdin);
freopen("duck.out", "w", stdout);
}
int n; cin >> n;
for (int i = 1; i <= n; ++i) cin >> a[i], bit = max(bit, int(a[i].size()));
int m; cin >> m;
for (int i = 1; i <= m; ++i) cin >> b[i], bit = max(bit, int(b[i].size()));
for (int i = 1; i <= n; ++i) add(a[i], 1);
for (int i = 1; i <= m; ++i) add(b[i], 2);
cout << (check() ? "Nina" : "Emilija");
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |