# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1055586 | MrPavlito | 동굴 (IOI13_cave) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
void exploreCave(int N) {
int n = N;
int trenutnacomb[n];
int solved[n];
int rez[n];
for(int i=0; i<n; i++)trenutnacomb[i] = 0, solved[i] = 0, rez[i] = 0;
for(int i=0; i<n; i++)
{
for(int j=0; j<n; j++)if(solved[j])trenutnacomb[j] = solved[j];
int t = tryCombination(trenutnacomb);
int l = 0;
int r = n-1;
while(l<r)
{
int mid = l+r >> 1;
for(int j=l; j<= mid; j++)if(!solved[j])trenutnacomb[j] ^= 1;
int p = tryCombination(trenutnacomb);
bool pomoc;
if(p == i && t == i)pomoc = true;
else if(p != i && t == i)pomoc = false;
else if(p == i && t !=i) pomoc = false;
else pomoc = true;
if(!pomoc)r = mid;
else l = mid+1;
t = p;
}
solved[l] = i;
rez[l] = trenutnacomb[l];
if(t == i)rez[l] = (trenutnacomb[l]^1);
}
}
//for(int i=0; i<n; i++)cout << trenutnacomb[i] << " ";cout << endl;
//for(int i=0; i<n; i++)cout << solved[i] << " ";cout << endl;
anwser(rez, solved);
}