# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
96841 |
2019-02-12T13:31:05 Z |
Kastanda |
ICC (CEOI16_icc) |
C++11 |
|
210 ms |
640 KB |
// 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;
bool Rand()
{
return (Rnd() & 1);
}
void GoForIt(vector < int > L, vector < int > R)
{
int cnt = 0;
while (L.size() > 1)
{
vector < int > L1, L2;
shuffle(L.begin(), L.end(), Rnd);
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;
shuffle(R.begin(), R.end(), Rnd);
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];
vector < int > A[N + 1];
for (int i = 1; i <= N; i++)
A[i].pb(i), P[i] = i;
for (int q = 1; q <= N - 1; q ++)
{
bool done = 0;
vector < int > L, R;
while (!done)
{
L.clear(); R.clear();
for (int i = 1; i <= N; i++)
{
bool w = Rand();
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 (q <= 50)
{
int _N = N - q + 1;
_N >>= 1; _N -= 10;
if ((int)L.size() <= _N || (int)R.size() <= _N)
continue;
}
done = query(L.size(), R.size(), L.data(), R.data());
}
GoForIt(L, R);
setRoad(fe, se);
int v = fe, u = se, pu = P[u];
for (int w : A[pu])
P[w] = P[v], A[P[v]].pb(w);
A[pu].clear();
}
return ;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
10 ms |
512 KB |
Ok! 108 queries used. |
2 |
Correct |
10 ms |
640 KB |
Ok! 109 queries used. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
40 ms |
512 KB |
Ok! 557 queries used. |
2 |
Correct |
59 ms |
512 KB |
Ok! 873 queries used. |
3 |
Correct |
62 ms |
632 KB |
Ok! 818 queries used. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
138 ms |
564 KB |
Ok! 1535 queries used. |
2 |
Correct |
210 ms |
512 KB |
Ok! 2185 queries used. |
3 |
Correct |
151 ms |
632 KB |
Ok! 1698 queries used. |
4 |
Correct |
186 ms |
572 KB |
Ok! 1750 queries used. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
152 ms |
568 KB |
Ok! 1629 queries used. |
2 |
Correct |
147 ms |
572 KB |
Ok! 1691 queries used. |
3 |
Correct |
151 ms |
512 KB |
Ok! 1833 queries used. |
4 |
Correct |
170 ms |
512 KB |
Ok! 1569 queries used. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
171 ms |
568 KB |
Too many queries! 1904 out of 1775 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
183 ms |
564 KB |
Too many queries! 1947 out of 1625 |
2 |
Halted |
0 ms |
0 KB |
- |