이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include<bits/stdc++.h>
using namespace std;
void exploreCave(int n) {
int sw[n], st[n], temp[n];
for(int i=0;i<n;i++)
st[i] = 0, sw[i] = -1;
int cc = tryCombination(st);
if(cc == -1)
{
for(int i=0;i<n;i++)
{
temp[i] = 1;
cc = tryCombination(temp);
sw[i] = cc;
}
answer(st, sw);
return;
}
for(int i=0;i<n;i++)
{
int cmb = tryCombination(st), swt = 1;
if(cmb == -1)
cmb = n;
if(cmb > i || cmb == -1)
swt = 0;
// st[i] = swt;
memset(temp, 1 - swt, sizeof(temp));
for(int j=0;j<n;j++)
{
if(sw[j] != -1)
temp[j] = st[j];
}
for(int j=0;j<n;j++)
{
if(sw[j] != -1)
continue;
temp[j] = swt;
cmb = tryCombination(temp);
if(cmb > i || cmb == -1)
{
sw[j] = i;
st[j] = swt;
break;
}
temp[j] = 1 - temp[j];
}
// for(int j=0;j<n;j++)
// cout << st[i] << " ";
// cout << '\n';
// for(int j=0;j<n;j++)
// cout << sw[i] << " ";
// cout << '\n';
}
answer(st, sw);
}
# | 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... |