// Hallelujah, praise the one who set me free
// Hallelujah, death has lost its grip on me
// You have broken every chain, There's salvation in your name
// Jesus Christ, my living hope
#include <bits/stdc++.h>
#include "minerals.h"
using namespace std;
#define REP(i, s, e) for (int i = (s); i < (e); i++)
#define RREP(i, s, e) for (int i = (s); i >= (e); i--)
template <class T>
inline bool mnto(T& a, T b) {return a > b ? a = b, 1 : 0;}
template <class T>
inline bool mxto(T& a, T b) {return a < b ? a = b, 1: 0;}
typedef long long ll;
typedef long double ld;
#define FI first
#define SE second
typedef pair<int, int> ii;
typedef pair<ll, ll> pll;
typedef tuple<int, int, int> iii;
#define ALL(_a) _a.begin(), _a.end()
#define SZ(_a) (int) _a.size()
#define pb push_back
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<ii> vii;
typedef vector<iii> viii;
#ifndef DEBUG
#define cerr if (0) cerr
#endif
const int INF = 1000000005;
const ll LINF = 1000000000000000005ll;
const int MAXN = 86005;
int n;
vi lft, rht;
bool state[MAXN];
int cur;
bool inlfi[MAXN];
void dnc(vi fi, vi se) {
REP (i, 1, 2 * n + 1) {
cerr << state[i];
}
cerr << '\n';
cerr << "fi:";
for (int i : fi) {
cerr << ' ' << i;
}
cerr << '\n';
cerr << "se:";
for (int i : se) {
cerr << ' ' << i;
}
cerr << '\n';
assert(SZ(fi) == SZ(se));
if (SZ(fi) == 1) {
Answer(fi[0], se[0]);
return;
}
vi lfi, rfi;
REP (i, 0, SZ(fi) / 2) {
lfi.pb(fi[i]);
inlfi[fi[i]] = 1;
}
REP (i, SZ(fi) / 2, SZ(se)) {
rfi.pb(fi[i]);
}
int cnt = 0;
for (int i : fi) {
if (inlfi[i] ^ state[i]) {
cnt++;
}
}
for (int i : fi) {
if (inlfi[i] ^ state[i] ^ (cnt * 2 > SZ(fi))) {
cur = Query(i);
cerr << "? " << i << '\n';
state[i] ^= 1;
}
}
for (int i : lfi) {
inlfi[i] = 0;
}
vi lse, rse;
for (int i : se) {
if (SZ(lse) == SZ(lfi)) {
rse.pb(i);
continue;
} else if (SZ(rse) == SZ(rfi)) {
lse.pb(i);
continue;
}
int nxt = Query(i);
state[i] ^= 1;
cerr << "? " << i << '\n';
if (nxt == cur) {
lse.pb(i);
} else {
rse.pb(i);
}
cur = nxt;
}
if (cnt * 2 > SZ(fi)) {
swap(rse, lse);
}
if (SZ(lfi) != SZ(lse)) {
swap(lse, rse);
}
dnc(lfi, lse);
dnc(rfi, rse);
}
void Solve(int N) {
n = N;
vi id(2 * n, 0);
iota(ALL(id), 1);
for (int i : id) {
int nxt = Query(i);
state[i] = 1;
cerr << "? " << i << '\n';
if (nxt > cur) {
lft.pb(i);
} else {
rht.pb(i);
}
cur = nxt;
}
assert(SZ(lft) == n);
dnc(lft, rht);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer [5] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Wrong Answer [5] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer [5] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer [5] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer [5] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer [5] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer [5] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer [5] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer [5] |
2 |
Halted |
0 ms |
0 KB |
- |