#include <bits/stdc++.h>
#include "icc.h"
using namespace std;
typedef long long ll;
const int N = 101;
int n, root[N];
bool myQuery(vector <int> &a, vector <int> &b){
if (a.empty() || b.empty())
return 0;
return query(a.size(), b.size(), a.data(), b.data());
}
void mySetRoad(int u, int v){
setRoad(u, v);
if (root[u] > root[v])
swap(u, v);
for(int i = 1; i <= n; i++)
if (root[i] == root[v])
root[i] = root[u];
}
pair <int, int> findEdge(){
vector <int> a, b;
for(int i = 0; i <= 6; i++){
a.clear();
b.clear();
for(int u = 1; u <= n; u++)
if (root[u] & (1 << i))
a.push_back(u);
else
b.push_back(u);
if (myQuery(a, b))
break;
}
for(int t = 0; t < 2; t++){
int l = 0, r = a.size();
while (l < r){
int mid = (l + r) >> 1;
vector <int> tmp;
for(int i = l; i <= mid; i++)
tmp.push_back(a[i]);
if (myQuery(tmp, b))
r = mid;
else
l = mid + 1;
}
a = {a[l]};
swap(a, b);
}
if (a[0] > b[0])
swap(a, b);
return {a[0], b[0]};
}
void run(int _n){
n = _n;
for(int i = 1; i <= n; i++)
root[i] = i;
for(int i = 1; i < n; i++){
pair <int, int> edge = findEdge();
mySetRoad(edge.first, edge.second);
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
492 KB |
Wrong road! |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
492 KB |
Wrong road! |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
23 ms |
492 KB |
Wrong road! |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
29 ms |
492 KB |
Wrong road! |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
62 ms |
492 KB |
Wrong road! |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
64 ms |
568 KB |
Wrong road! |
2 |
Halted |
0 ms |
0 KB |
- |