#include <bits/stdc++.h>
#include "icc.h"
#define ll long long
#define ld long double
#define sp ' '
#define en '\n'
#define smin(a, b) a = min(a, b)
#define smax(a, b) a = max(a, b)
using namespace std;
const int N = 100 + 2;
const int inf = 1e9;
vector<int> svi[N];
int aaa[N], bbb[N];
int Query(vector<int> a, vector<int> b) {
int A = a.size(); int B = b.size();
for (int i = 0; i < A; i++) aaa[i] = a[i];
for (int i = 0; i < B; i++) bbb[i] = b[i];
return query(A, B, aaa, bbb);
}
int gazda[N];
void run(int n) {
vector<int> v;
for (int i = 1; i <= n; i++) {
svi[i].push_back(i);
gazda[i] = i;
}
auto Sredi = [&] (vector<int> v) {
vector<int> ret;
for (int i = 0; i < v.size(); i++) {
for (int j : svi[v[i]]) ret.push_back(j);
}
return ret;
};
for (int zz = 0; zz < n - 1; zz++) {
vector<int> v;
for (int i = 1; i <= n; i++) {
if (gazda[i] == i) v.push_back(i);
}
int sz = v.size();
vector<int> a, b;
while (1) {
random_shuffle(v.begin(), v.end());
for (int i = 0; i < sz / 2; i++) a.push_back(v[i]);
for (int i = sz / 2; i < sz; i++) b.push_back(v[i]);
auto aa = Sredi(a); auto bb = Sredi(b);
if (Query(aa, bb) == 1) break;
else {a.clear(); b.clear();}
}
a = Sredi(a); b = Sredi(b);
int l = 0, r = a.size() - 2, inda = a.back();
while (l <= r) {
int mid = l + r >> 1;
vector<int> tr;
for (int i = 0; i <= mid; i++) tr.push_back(a[i]);
if (Query(tr, b) == 1) {
inda = a[mid];
r = mid - 1;
}
else l = mid + 1;
}
l = 0, r = b.size() - 2;
int indb = b.back();
while (l <= r) {
int mid = l + r >> 1;
vector<int> tr;
for (int i = 0; i <= mid; i++) tr.push_back(b[i]);
if (Query({inda}, tr) == 1) {
indb = b[mid];
r = mid - 1;
}
else l = mid + 1;
}
setRoad(inda, indb);
while (gazda[inda] != inda) inda = gazda[inda];
while (gazda[indb] != indb) indb = gazda[indb];
for (int i : svi[indb]) {
svi[inda].push_back(i);
gazda[i] = inda;
}
svi[indb].clear();
}
}
Compilation message
icc.cpp: In lambda function:
icc.cpp:29:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | for (int i = 0; i < v.size(); i++) {
| ~~^~~~~~~~~~
icc.cpp: In function 'void run(int)':
icc.cpp:52:25: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
52 | int mid = l + r >> 1;
| ~~^~~
icc.cpp:64:25: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
64 | int mid = l + r >> 1;
| ~~^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
468 KB |
Ok! 111 queries used. |
2 |
Correct |
6 ms |
468 KB |
Ok! 103 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
31 ms |
468 KB |
Ok! 552 queries used. |
2 |
Correct |
51 ms |
484 KB |
Ok! 861 queries used. |
3 |
Correct |
50 ms |
480 KB |
Ok! 807 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
126 ms |
468 KB |
Ok! 1516 queries used. |
2 |
Correct |
179 ms |
492 KB |
Ok! 2163 queries used. |
3 |
Correct |
144 ms |
492 KB |
Ok! 1741 queries used. |
4 |
Correct |
137 ms |
468 KB |
Ok! 1709 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
165 ms |
484 KB |
Ok! 1665 queries used. |
2 |
Correct |
140 ms |
500 KB |
Ok! 1634 queries used. |
3 |
Correct |
162 ms |
496 KB |
Ok! 1865 queries used. |
4 |
Correct |
126 ms |
492 KB |
Ok! 1644 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
171 ms |
500 KB |
Too many queries! 1827 out of 1775 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
158 ms |
616 KB |
Too many queries! 1858 out of 1625 |
2 |
Halted |
0 ms |
0 KB |
- |