# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
519256 | Jomnoi | 동굴 (IOI13_cave) | C++17 | 578 ms | 696 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cave.h"
#define DEBUG 0
using namespace std;
const int MX = 5e3 + 10;
int S[MX], D[MX], res, res1;
bool up;
int l, r, pos;
vector <int> vec, tmp;
void exploreCave(int N) {
for(int i = 0; i < N; i++) {
vec.push_back(i);
}
for(int i = 0; i < N; i++) {
for(auto v : vec) {
S[v] = 0;
}
res1 = tryCombination(S);
up = (res1 == i);
l = 0, r = vec.size() - 1, pos = -1;
while(l <= r) {
int mid = (l + r) / 2;
for(int j = 0; j <= mid; j++) {
S[vec[j]] = up;
}
for(int j = mid + 1; j < vec.size(); j++) {
S[vec[j]] = up ^ 1;
}
if(tryCombination(S) == i) {
l = mid + 1;
}
else {
pos = mid;
r = mid - 1;
}
}
S[vec[pos]] = up;
D[vec[pos]] = i;
tmp.clear();
for(int j = 0; j < pos; j++) {
tmp.push_back(vec[j]);
}
for(int j = pos + 1; j < vec.size(); j++) {
tmp.push_back(vec[j]);
}
vec = tmp;
}
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... |