이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include "bits/stdc++.h"
using namespace std;
int can_change [5000];
int S [5000]; // correct position
int D [5000]; // destination
// tryCombination() => to check
int n;
int nums [5000];
void solve_for_X(int x) {
int e = tryCombination(nums);
if (e != x) {
for (int i = 0; i < n ; i ++) {
if (!can_change[i]) {
if (nums[i] == 1) {
nums[i] = 0;
} else {
nums[i] = 1;
}
}
}
}
int l = 0;
int r = n - 1;
int v[5000] = {1};
while (l < r) {
// if (x == 3) {
// cout << l << " " << r << endl;
// }
// v = nums;
// if (x == 3) {
// cout << v[0] << " " << v[1] << endl;
// }
int mid = (l + r) / 2;
for (int i = 0; i < n; i++) {
if (l <= i && i <= mid && !can_change[i]) {
if (nums[i] == 1) {
v[i] = 0;
} else {
v[i] = 1;
}
} else {
v[i] = nums[i];
}
}
// if (x == 3) {
// cout << v[0] << " " << v[1] << endl;
// }
e = tryCombination(v);
if (e > x || e == -1) {
r = mid;
} else {
l = mid + 1;
}
}
can_change[l] = 1;
// cout << x << " " << l << endl;
if (nums[l] == 1) {
S[l] = 0;
nums[l] = 0;
} else {
S[l] = 1;
nums[l] = 1;
}
D[l] = x;
}
void exploreCave(int N) {
n = N;
for (int i = 0; i < N ; i++) {
nums[i] = 1;
}
for (int i = 0; i < N ; i++) {
solve_for_X(i);
}
answer(S, D);
}
# | 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... |