# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
896690 | aqxa | 동굴 (IOI13_cave) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
// #include "cave.h"
const int mxn = 5001;
using ll = long long;
void exploreCave(int n) {
int ans[n], need[n];
for (int i = 0; i < n; ++i) {
need[i] = -1;
}
int t[n];
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n; ++j) {
t[j] = (need[j] == -1 ? 0 : need[j]);
}
int can = tryCombination(t);
if (can == -1) can = n;
can = (can > i);
int lo = 0, hi = n - 1;
while (lo < hi) {
int mid = (lo + hi) / 2;
for (int j = lo; j <= mid; ++j) {
t[j] = (need[j] == -1 ? t[j] ^ 1 : need[j]);
}
int can2 = tryCombination(t);
if (can2 == -1) can2 = n;
can2 = (can > i);
if (can == can2) {
lo = mid + 1;
} else {
hi = mid;
can = can2;
}
}
assert(need[lo] == -1);
need[lo] = can ^ t[lo] ^ 1;
ans[lo] = i;
}
answer(need, ans);
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
return 0;
}