답안 #16651

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
16651 2015-09-03T01:42:06 Z eaststar 동굴 (IOI13_cave) C++14
0 / 100
40 ms 620 KB
#include "cave.h"
int a[5010],b[5010],chk[5010];
void exploreCave(int n){
  int i,j,s,e,m,t,p;
  for(i=0;i<n;++i){
    t=tryCombination(a);
    s=0,e=n-1;
    while(s<e){
      m=(s+e)/2;
      for(j=s;j<=m;++j)if(!chk[j])a[j]=!a[j];
      p=t;
      (p==i)^(t=tryCombination(a)==i)?s=m+1:e=m;
    }
    a[s]=!a[s],b[s]=i,chk[s]=1;
  }
  answer(a,b);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 23 ms 620 KB Answer is wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 40 ms 488 KB Answer is wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 384 KB Output is correct
2 Incorrect 5 ms 384 KB Answer is wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 512 KB Output is correct
2 Incorrect 6 ms 512 KB Answer is wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 27 ms 512 KB Answer is wrong
2 Halted 0 ms 0 KB -