이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
int n;
int ask(const vector<int> &q) {
int x = query(q);
if (x == n) {
exit(0);
}
return x;
}
mt19937 rng(123123);
void solve(int n) {
::n = n;
vector<int> a(n);
iota(a.begin(), a.end(), 1);
do {
shuffle(a.begin(), a.end(), rng);
} while (ask(a));
int cur = 0;
vector<int> done(n);
for (int i = 0; i < n; i++) {
if (done[i]) continue;
vector<int> ord;
for (int j = i + 1; j < n; j++) {
if (!done[j]) ord.emplace_back(j);
}
shuffle(ord.begin(), ord.end(), rng);
bool might_done = 0;
int last_done = -1;
for (int j : ord) {
swap(a[i], a[j]);
int tmp = ask(a);
if (tmp - cur == 2) {
done[j] = 1;
cur = tmp;
break;
} else if (tmp - cur == 1) {
cur = tmp;
// a[i] = j || a[j] = i
if (might_done) done[last_done] = 1;
might_done = 1;
last_done = j;
} else if (tmp == cur) {
// a[i] != j && a[i] != i && a[j] != i && a[j] != j
if (might_done) done[last_done] = 1;
might_done = 0;
swap(a[i], a[j]);
} else if (tmp - cur == -1) { // tmp < cur
// a[i] = i || a[j] = j
swap(a[i], a[j]);
if (might_done == 0) {
done[j] = 1;
} else {
break;
}
} else {
done[j] = 1;
swap(a[i], a[j]);
break;
}
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |