# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
882356 | pirhosig | Lost in the cycle (IOI19_cycle) | C++17 | 1 ms | 600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cycle.h"
using namespace std;
void escape(int n)
{
if (n == 2)
{
jump(1);
return;
}
if (!jump(1))
{
bool res = jump((n - 1) / 2);
// cerr << "F " << res << endl;
}
int low = 0;
int upp = n / 2;
int curr = 0;
while (low < upp)
{
int mid = (low + upp + 1) / 2;
int jval = (mid - curr + n) % n;
curr = mid;
// cerr << "M " << low << " " << upp << " " << mid << " " << jval << endl;
if (jump(jval)) low = mid;
else upp = mid - 1;
}
if (curr != low) jump(low - curr + n) % n;
// cerr << "S " << low << endl;
}
컴파일 시 표준 에러 (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... |