// I do it for the glory
#include<bits/stdc++.h>
#include "icc.h"
#define pb push_back
using namespace std;
//mt19937 Rnd(chrono::steady_clock::now().time_since_epoch().count());
int fe, se;
void GoForIt(vector < int > L, vector < int > R)
{
int cnt = 0;
while (L.size() > 1)
{
vector < int > L1, L2;
for (int i = 0; i < (int)L.size(); i++)
{
if (i < ((int)L.size() >> 1))
L1.pb(L[i]);
else
L2.pb(L[i]);
}
cnt ++;
bool w = query(L1.size(), R.size(), L1.data(), R.data());
if (w) L = L1;
else L = L2;
}
while (R.size() > 1)
{
vector < int > R1, R2;
for (int i = 0; i < (int)R.size(); i++)
{
if (i < ((int)R.size() >> 1))
R1.pb(R[i]);
else
R2.pb(R[i]);
}
cnt ++;
bool w = query(L.size(), R1.size(), L.data(), R1.data());
if (w) R = R1;
else R = R2;
}
assert(cnt <= 13);
fe = L[0];
se = R[0];
return ;
}
void run(int N)
{
int P[N + 1];
set < int > S;
vector < int > A[N + 1];
for (int i = 1; i <= N; i++)
A[i].pb(i), P[i] = i, S.insert(i);
for (int q = 1; q <= N - 1; q ++)
{
vector < int > L, R, perm(7, 0);
//iota(perm.begin(), perm.end(), 0);
//auto it = perm.begin(); it ++;
//shuffle(it, perm.end(), Rnd);
for (int bit = 0; bit <= 7; bit ++)
{
L.clear(); R.clear();
int id = 0;
for (int i : S)
{
id ++;
bool w = (id & (1 << bit)) ? (1) : (0);
for (int v : A[i])
{
if (w) L.pb(v);
else R.pb(v);
}
}
if (!L.size() || !R.size())
continue; // What are the odds of that ?
if (query(L.size(), R.size(), L.data(), R.data()))
break;
}
GoForIt(L, R);
setRoad(fe, se);
int v = se, u = fe;
if ((q & 4) && (q >= 70))
swap(v, u);
int pu = P[u];
for (int w : A[pu])
P[w] = P[v], A[P[v]].pb(w);
A[pu].clear(); S.erase(pu);
}
return ;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
512 KB |
Ok! 94 queries used. |
2 |
Correct |
8 ms |
512 KB |
Ok! 105 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
38 ms |
512 KB |
Ok! 550 queries used. |
2 |
Correct |
51 ms |
560 KB |
Ok! 692 queries used. |
3 |
Correct |
49 ms |
512 KB |
Ok! 679 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
139 ms |
564 KB |
Ok! 1426 queries used. |
2 |
Correct |
160 ms |
632 KB |
Ok! 1676 queries used. |
3 |
Correct |
133 ms |
632 KB |
Ok! 1613 queries used. |
4 |
Correct |
130 ms |
512 KB |
Ok! 1549 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
138 ms |
512 KB |
Ok! 1472 queries used. |
2 |
Correct |
116 ms |
632 KB |
Ok! 1473 queries used. |
3 |
Correct |
151 ms |
692 KB |
Ok! 1647 queries used. |
4 |
Correct |
164 ms |
616 KB |
Ok! 1515 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
149 ms |
512 KB |
Ok! 1608 queries used. |
2 |
Correct |
144 ms |
512 KB |
Ok! 1622 queries used. |
3 |
Correct |
145 ms |
564 KB |
Ok! 1641 queries used. |
4 |
Correct |
127 ms |
564 KB |
Ok! 1619 queries used. |
5 |
Correct |
133 ms |
512 KB |
Ok! 1522 queries used. |
6 |
Correct |
141 ms |
608 KB |
Ok! 1563 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
138 ms |
512 KB |
Too many queries! 1661 out of 1625 |
2 |
Halted |
0 ms |
0 KB |
- |