# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
423877 | ioi | 동굴 (IOI13_cave) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include<bits/stdc++.h>
using namespace std ;
void exploreCave(int N) {
//int main(){
int N = 4 ;
int com[N] , ans[N];
memset(com , 0 , sizeof com);
int anscom[N];
memset(anscom , 0 , sizeof anscom);
for(int i = 0 ; i < N ; i ++){
int c = tryCombination(com);
if(c != i){
for(int j = 0 ; j < N ; j ++){
if(!anscom[j])com[j] ^= 1 ;
}
}
int l = 0 , r = N - 1 , md ;
c = i ;
while(l < r){
md = (l + r) / 2 ;
for(int j = l ; j <= md ; j ++){
if(!anscom[j])com[j] ^= 1 ;
}
int c2 = tryCombination(com);
for(int j = l ; j <= md ; j ++){
if(!anscom[j])com[j] ^= 1 ;
}
if(c == c2)l = md + 1 ;
else r = md ;
}
// cout << "l is " << l << endl ;
anscom[l] ++ ;
ans[l] = i ;
com[l] ^= 1 ;
}
answer(com , ans);
// for(int i = 0 ; i < N ; i ++)cout << com[i] << " " << ans[i] << endl ;
}