# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
412094 | losmi247 | 동굴 (IOI13_cave) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cave.h"
using namespace std;
typedef long long ll;
const int N = 5002;
int n;
int *prvi,*drugi;
int *kojisvic;
int tryCombination(int *S){
for(int i = 0; i < n; i++){
if(S[i] != prvi[kojisvic[i]]) return i;
}
return -1;
}
void answer(int *S,int *D){
for(int i = 0; i < n; i++){
if(S[i] != prvi[i]){
cout << "WA1" << endl;
exit(0);
}
}
for(int i = 0; i < n; i++){
if(D[i] != drugi[i]){
cout << "WA2" << endl;
exit(0);
}
}
cout << "OK" << endl;
}
void znamred(){
int *niz = (int*)malloc(sizeof(int)*n);
int *odg1 = (int*)malloc(sizeof(int)*n);
for(int i = 0; i < n; i++){ niz[i] = 0; odg1[i] = i; }
while(1){
int x = tryCombination(niz);
if(x == -1) break;
niz[x] ^= 1;
}
answer(niz,odg1);
}
void exploreCave(int br){
n = br;
znamred();
}
/*int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
int gh;
cin >> gh;
prvi = (int*)malloc(sizeof(int)*gh);
drugi = (int*)malloc(sizeof(int)*gh);
kojisvic = (int*)malloc(sizeof(int)*gh);
for(int i = 0; i < gh; i++) cin >> prvi[i];
for(int i = 0; i < gh; i++){ cin >> drugi[i]; kojisvic[drugi[i]] = i; }
exploreCave(gh);
}*/