# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
987636 | Tsagana | 동굴 (IOI13_cave) | C++14 | 837 ms | 800 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include<bits/stdc++.h>
#define all(x) x.begin(), x.end()
#define pq priority_queue
#define lb lower_bound
#define ub upper_bound
#define pb push_back
#define eb emplace_back
#define F first
#define S second
using namespace std;
bitset<5069> spc;
int n, a[5001], sq[5001];
int qr(int ky, int x) {
for (int i = 0; i < n; i++) {
if (sq[i] < n) a[i] = spc[sq[i]];
else a[i] = ky ^ i <= x;
}
return tryCombination(a);
}
void exploreCave(int N) {
int rh, md, zz; n = N;
for (int i = 0; i < n; i++) sq[i]=n;
for (int i = 0; i < n; i++) {
spc[i] = (qr(1, n-1) == i);
for (int lh = 0, rh = n-1; lh <= rh;) {
md = (lh + rh) / 2;
if (qr(spc[i], md) == i) {zz = md; rh = md-1;}
else lh = md + 1;
}
sq[zz] = i;
}
for (int i = 0; i < n; i++) a[i] = spc[sq[i]];
answer(a, sq);
}
컴파일 시 표준 에러 (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... |