# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
284636 | triplem5ds | 동굴 (IOI13_cave) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include "bits/stdc++.h"
using namespace std;
int W[5005];
int ans[5005];
int S[5005];
void exploreCave(int N) {
n = N;
memset(ans, -1, sizeof ans);
for(int i = 0; i < N; i++){
for(int j = 0; j < N; j++)if(ans[j] == -1)S[j] = 0;
else S[j] = ans[j];
int x = tryCombination(S);
if(x == -1)x = N;
bool f = (x <= i); ///the door is closed then it should be open by the other state
///find which switch is it
int lo = 0, hi = N - 1 - i;
while(lo < hi){
int md = lo + (hi - lo) / 2;
int cnt = 0;
for(int j = 0; j < N; j++){
if(ans[j] != -1)S[j] = ans[j];
else {
S[j] = (f ^ (cnt > md));
cnt++;
}
}
int x = tryCombination(S);
if(x == -1)x = N;
if(x > i)
hi = md;
else
lo = md + 1;
}
int cnt = 0;
for(int j = 0; j < n; j++){
if(ans[j] == -1){
if(cnt == lo){
ans[j]=f;
W[j] = i;
break;
}
cnt++;
}
}
}
answer(ans,W);
}