# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
256532 | Harry464 | 동굴 (IOI13_cave) | C++14 | 1139 ms | 540 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)
{
vector <ll> sw(n,0);
vector <ll> odg(n,-1);
for (int j = 0; j < n; j++){
vector <ll> t = sw;
vector <ll> free;
for (int i = 0; i < n; i++)
if (odg[i] == -1)
free.push_back(i), t[i] = 1;
ll ask = tryCombination(&t[0]);
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++)
t[free[i]] = trig;
for (int i = 0; i < l; i++)
t[free[i]] = (trig+1)%2;
for (int i = mid + 1; i < free.size(); i++)
t[free[i]] = (trig+1)%2;
ask = tryCombination(&t[0]);
if (ask == j)
l = mid + 1;
else
r = mid;
}
sw[l] = trig;
odg[l] = j;
}
answer(&sw[0],&odg[0]);
}
컴파일 시 표준 에러 (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... |