#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
#define fastio ios::sync_with_stdio(false), cin.tie(0)
#define pb push_back
#define eb emplace_back
#define f first
#define s second
#define lowbit(x) x&-x
#include "icc.h"
const int maxn = 105;
int n;
int par[maxn];
int root(int x){ return x == par[x] ? x : par[x] = root(par[x]);}
vector<int> comp[maxn];
bool qry(int sa, int sb, vector<int> a, vector<int> b){
int aa[a.size()], bb[b.size()];
copy(a.begin(), a.end(), aa), copy(b.begin(), b.end(), bb);
return query(sa, sb, aa, bb);
}
void run(int _n){
n = _n;
for(int i = 1; i <= n; i++) comp[i].pb(i), par[i] = i;
random_device rd;
mt19937 rng(rd());
for(int rd = 0; rd < n - 1; rd++){
set<int> st;
for(int i = 1; i <= n; i++) st.insert(root(i));
vector<vector<int>> s(2);
bool c = false;
while(!c){
s[0].clear(), s[1].clear();
for(auto x : st){
int cur = rng() % 2;
for(auto u : comp[x]) s[cur].pb(u);
}
if(!s[0].size() || !s[1].size()) continue;
c = qry(s[0].size(), s[1].size(), s[0], s[1]);
}
int l = 0, r = s[0].size() - 1;
while(l != r){
int m = (l + r) / 2;
vector<int> ns;
for(int i = l; i <= m; i++) ns.pb(s[0][i]);
c = qry(ns.size(), s[1].size(), ns, s[1]);
if(c) r = m;
else l = m + 1;
}
vector<int> tmp(1, s[0][l]);
swap(s[0], tmp);
l = 0, r = s[1].size() - 1;
while(l != r){
int m = (l + r) / 2;
vector<int> ns;
for(int i = l; i <= m; i++) ns.pb(s[1][i]);
c = qry(1, ns.size(), s[0], ns);
if(c) r = m;
else l = m + 1;
}
setRoad(s[0][0], s[1][l]);
int a = root(s[0][0]), b = root(s[1][l]);
par[a] = b;
for(auto x : comp[a]) comp[b].pb(x);
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
604 KB |
Ok! 110 queries used. |
2 |
Correct |
4 ms |
604 KB |
Ok! 102 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
22 ms |
604 KB |
Ok! 543 queries used. |
2 |
Correct |
35 ms |
600 KB |
Ok! 843 queries used. |
3 |
Correct |
36 ms |
604 KB |
Ok! 817 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
78 ms |
648 KB |
Ok! 1493 queries used. |
2 |
Correct |
114 ms |
600 KB |
Ok! 2156 queries used. |
3 |
Correct |
103 ms |
604 KB |
Ok! 1730 queries used. |
4 |
Correct |
90 ms |
656 KB |
Ok! 1722 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
82 ms |
600 KB |
Ok! 1594 queries used. |
2 |
Correct |
84 ms |
604 KB |
Ok! 1619 queries used. |
3 |
Correct |
123 ms |
600 KB |
Ok! 1852 queries used. |
4 |
Correct |
87 ms |
652 KB |
Ok! 1603 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
96 ms |
604 KB |
Too many queries! 1853 out of 1775 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
100 ms |
600 KB |
Too many queries! 1906 out of 1625 |
2 |
Halted |
0 ms |
0 KB |
- |