#include "icc.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int, int>
#define oo 1e9
vector<vector<int>> comps;
int n;
void f(vector<int> a, vector<int>& b){
while(b.size() != 1){
vector<int> tmp;
for(int i = 0; i <= (b.size() - 1) / 2; i++){
tmp.push_back(b[i]);
}
if(query(a.size(), tmp.size(), a.data(), tmp.data())){
b = tmp;
}
else{
for(int i = 0; i < tmp.size(); i++){
b.erase(b.begin());
}
}
}
}
vector<int> conv(vector<int> c){
vector<int> res;
for(int i : c){
for(int a : comps[i]){
res.push_back(a);
}
}
return res;
}
void run(int N){
n = N;
for(int i = 1; i <= n; i++){
comps.push_back({i});
}
for(int z = 1; z < n; z++){
vector<int> a, b;
for(int j = 0; j < 8; j++){
for(int i = 0; i < comps.size(); i++){
if((1 << j) & i) a.push_back(i);
else b.push_back(i);
}
if(query(conv(a).size(), conv(b).size(), conv(a).data(), conv(b).data())) break;
a.clear(), b.clear();
}
vector<int> v1 = conv(a), v2 = conv(b);
f(v1, v2);
f(v2, v1);
int c1, c2;
for(int i = 0; i < comps.size(); i++){
for(int j : comps[i]){
if(v1[0] == j) c1 = i;
if(v2[0] == j) c2 = i;
}
}
vector<int> v;
v.swap(comps[c1]);
for(int j : comps[c2]){
v.push_back(j);
}
if(c1 < c2) swap(c1, c2);
comps.erase(comps.begin() + c1);
comps.erase(comps.begin() + c2);
comps.push_back(v);
setRoad(v1[0], v2[0]);
}
}
Compilation message
icc.cpp: In function 'void f(std::vector<int>, std::vector<int>&)':
icc.cpp:17:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
17 | for(int i = 0; i <= (b.size() - 1) / 2; i++){
| ~~^~~~~~~~~~~~~~~~~~~~~
icc.cpp:24:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for(int i = 0; i < tmp.size(); i++){
| ~~^~~~~~~~~~~~
icc.cpp: In function 'void run(int)':
icc.cpp:49:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
49 | for(int i = 0; i < comps.size(); i++){
| ~~^~~~~~~~~~~~~~
icc.cpp:60:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
60 | for(int i = 0; i < comps.size(); i++){
| ~~^~~~~~~~~~~~~~
icc.cpp:71:9: warning: 'c2' may be used uninitialized in this function [-Wmaybe-uninitialized]
71 | if(c1 < c2) swap(c1, c2);
| ^~
icc.cpp:67:24: warning: 'c1' may be used uninitialized in this function [-Wmaybe-uninitialized]
67 | v.swap(comps[c1]);
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
604 KB |
Ok! 98 queries used. |
2 |
Correct |
4 ms |
632 KB |
Ok! 94 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
26 ms |
856 KB |
Ok! 515 queries used. |
2 |
Correct |
30 ms |
604 KB |
Ok! 654 queries used. |
3 |
Correct |
30 ms |
604 KB |
Ok! 660 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
82 ms |
636 KB |
Ok! 1443 queries used. |
2 |
Correct |
90 ms |
632 KB |
Ok! 1612 queries used. |
3 |
Correct |
92 ms |
600 KB |
Ok! 1646 queries used. |
4 |
Correct |
88 ms |
644 KB |
Ok! 1513 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
92 ms |
636 KB |
Ok! 1596 queries used. |
2 |
Correct |
92 ms |
644 KB |
Ok! 1581 queries used. |
3 |
Correct |
93 ms |
600 KB |
Ok! 1648 queries used. |
4 |
Correct |
87 ms |
600 KB |
Ok! 1511 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
92 ms |
624 KB |
Ok! 1623 queries used. |
2 |
Correct |
90 ms |
600 KB |
Ok! 1620 queries used. |
3 |
Correct |
97 ms |
632 KB |
Ok! 1645 queries used. |
4 |
Correct |
96 ms |
848 KB |
Ok! 1625 queries used. |
5 |
Correct |
85 ms |
604 KB |
Ok! 1426 queries used. |
6 |
Correct |
92 ms |
620 KB |
Ok! 1543 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
92 ms |
600 KB |
Too many queries! 1646 out of 1625 |
2 |
Halted |
0 ms |
0 KB |
- |