이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#ifndef ARTHUR_LOCAL
#include "cave.h"
#endif
void exploreCave(int n)
{
int D[n]; // we need to answer these
int S[n];
for(int i=0; i<n; i++)
{
S[i]=0;
D[i]=0;
}
vector<bool> lock(n);
for(int i=0; i<n; i++) // work out door i
{
int cur = tryCombination(S); // should be >= i unless it's -1
for(int j=0; j<n; j++) // mess with switch j
{
if(lock[j]) continue;
S[j]=1-S[j];
int new_thing = tryCombination(S);
if(new_thing==cur)
{
S[j]=1-S[j];
continue;
}
lock[j]=1;
D[j]=i;
if(new_thing==i) S[j]=1-S[j];
break;
}
}
answer(S,D);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |