# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1105478 | lkateris | 동굴 (IOI13_cave) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <iostream>
using namespace std;
bool vis[5005];
vector<int> switches;
int corr;
void exploreCave(int N) {
int S[N],D[N];
for(int i=0;i<N;++i) {
switches.clear();
for(int j=0;j<N;++j) if (!vis[j]) switches.push_back(j);
for(int j=0;j<N-i;++j) S[switches[j]] = 0;
if (tryCombinations(S) == i) corr = 1;
else corr = 0;
for(int j=0;j<N-i;++j) S[switches[j]] = corr^1;
int l = 0;
int r = N-i-1;
while (l < r) {
int mid = (l+r)/2;
for (int j=l; j <= mid; ++j) S[switches[j]] = corr;
int f = tryCombination(S);
for (int j=l; j <= mid; ++j) S[switches[j]] = corr^1;
if (f == i) l = mid+1;
else r = mid;
}
vis[switches[l]] = true;
S[switches[l]] = corr;
D[switches[l]] = i;
}
answer(S,D);
}