# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
256545 | Harry464 | 동굴 (IOI13_cave) | C++14 | 1134 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <cstring>
#include "cave.h"
typedef int ll;
using namespace std;
void exploreCave(int n)
{
ll sw[n];
ll odg[n];
for (int i = 0; i < n; i++)
sw[i] = 0, odg[i] = -1;
for (int j = 0; j < n; j++){
vector <ll> free;
for (int i = 0; i < n; i++)
if (odg[i] == -1)
free.push_back(i), sw[i] = 1;
ll ask = tryCombination(sw);
ll trig;
if (ask == j)
trig = 0;
else
trig = 1;
ll l = 0, r = free.size() - 1;
while (l < r){
ll mid = (l+r)/2;
for (int i = l; i <= mid; i++)
sw[free[i]] = trig;
for (int i = 0; i < l; i++)
sw[free[i]] = (trig+1)%2;
for (int i = mid + 1; i < free.size(); i++)
sw[free[i]] = (trig+1)%2;
ask = tryCombination(sw);
if (ask == j)
l = mid + 1;
else
r = mid;
}
sw[l] = trig;
odg[l] = j;
}
answer(sw,odg);
}
컴파일 시 표준 에러 (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... |