#include "minerals.h"
#include <bits/stdc++.h>
using namespace std;
int cur = 0;
void dq(vector<int> A, vector<int> B, bool flag) {
assert(A.size() == B.size());
if (A.empty()) return;
if (A.size() == 1) {
// cerr << "cand.size() = " << cand.size() << endl;
Answer(A[0], B[0]);
return;
}
int m = A.size() / 2;
for (int i = 0; i < m; i++)
cur = Query(A[i]);
vector<int> L, R;
for (int x: B) {
int now = Query(x);
if ((now == cur) ^ flag) {
L.push_back(x);
} else {
R.push_back(x);
}
cur = now;
}
dq(vector<int>(A.begin(), A.begin() + m), L, !flag);
dq(vector<int>(A.begin() + m, A.end()), R, flag);
}
void Solve(int N) {
vector<int> A, B;
int cur = 0;
for (int i = 1; i <= N*2; i++) {
int q = Query(i);
if (q == cur) {
// Query(i);
A.push_back(i);
} else {
B.push_back(i);
}
cur = q;
}
dq(A, B, false);
// for (int i = 1; i <= 50; i++) cerr << i << ' ' << f(i) << endl;
/*
for (int i = 1; i <= N*2; i++) {
Query(i);
for (int j = 1; j < i; j++) {
if (Query(j) == 1)
Answer(i, j);
Query(j);
}
Query(i);
}
*/
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
492 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
620 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
492 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
492 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
492 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
492 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
492 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
492 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
492 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |