# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
881055 | HossamHero7 | Vlak (COCI20_vlak) | C++14 | 8 ms | 22872 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define endl '\n'
const int N = 200005;
int tree[N][26];
bool player[N][2];
int dp[N][2];
int pt = 1;
void add(string s,bool b){
int node = 0;
for(int i=0;i<s.size();i++){
if(~tree[node][s[i]-'a']) {
node = tree[node][s[i]-'a'];
player[node][b] = 1;
}
else {
tree[node][s[i]-'a'] = pt ++;
node = tree[node][s[i]-'a'];
player[node][b] = 1;
}
}
}
int solve(int node,bool b){
if(!player[node][b]) return 0;
int &ret = dp[node][b];
if(~ret) return ret;
ret = 0;
for(int c=0;c<26;c++){
if((~tree[node][c]) && player[tree[node][c]][b]){
ret |= !solve(tree[node][c],!b);
}
}
return ret;
}
void solve(){
int n;
cin>>n;
memset(tree,-1,sizeof(tree));
while(n--){
string s;
cin>>s;
add(s,0);
}
cin>>n;
while(n--){
string s;
cin>>s;
add(s,1);
}
memset(dp,-1,sizeof(dp));
player[0][0] = player[0][1] = 1;
cout<<(solve(0,0) ? "Nina" : "Emilija")<<endl;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int t=1;
//cin>>t;
while(t--){
solve();
}
return 0;
}
컴파일 시 표준 에러 (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... |