# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
962684 | serkanrashid | 동굴 (IOI13_cave) | C++14 | 245 ms | 852 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
using namespace std;
const int maxn = 5005;
int *s,*d;
int tekdoor;
int rec(vector<int>pos)
{
if(pos.size()==1) return pos[0];
int mid = (pos.size()-1)/2;
for(int j = 0; j <= mid; j++) s[pos[j]] ^= 1;
int ch = tryCombination(s);
vector<int>nb;
if(ch == tekdoor)
{
for(int j = mid+1; j < pos.size(); j++) nb.push_back(pos[j]);
return rec(nb);
}
for(int j = 0; j <= mid; j++)
{
s[pos[j]] ^= 1;
nb.push_back(pos[j]);
}
return rec(nb);
}
void exploreCave(int N)
{
int ch;
s = new int[N];
d = new int[N];
for(int i = 0; i < N; i++) d[i] = -1;
for(int i = 0; i < N; i++)
{
vector<int>pos;
for(int j = 0; j < N; j++)
{
if(d[j] == -1)
{
s[j] = 0;
pos.push_back(j);
}
}
ch = tryCombination(s);
if(ch != i)
{
for(int j = 0; j < N; j++) if(d[j] == -1) s[j] = 1;
}
tekdoor = i;
int idx = rec(pos);
d[idx] = i;
s[idx] ^= 1;
}
answer(s,d);
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |