#include "icc.h"
#include <bits/stdc++.h>
using namespace std;
/*
int query(int a, int b, int* aa, int* bb) {
}
*/
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int query(vector<int> a, vector<int> b) {
int aa[(int)a.size()], bb[(int)b.size()];
for(int i = 0; i < (int)a.size(); ++i) aa[i] = a[i];
for(int i = 0; i < (int)b.size(); ++i) bb[i] = b[i];
return query(a.size(), b.size(), aa, bb);
}
struct dsu {
vector<int> p;
dsu(int n) {
p.resize(n);
iota(p.begin(), p.end(), 0);
}
int get(int a) {return p[a] = (p[a] == a ? a : get(p[a]));}
void uni(int a, int b) {
a = get(a);
b = get(b);
if(a > b) swap(a, b);
p[a] = b;
}
};
int ask(vector<int> a, vector<int> b) {
int l = 0, r = (int)a.size();
while(l < r) {
int mid = l + r >> 1;
vector<int> paiu;
for(int j = 0; j <= mid; ++j) paiu.push_back(a[j]);
if(query(paiu, b)) {
r = mid;
} else l = mid + 1;
}
return a[r];
}
void run(int n) {
dsu d(n + 5);
for(int times = 0; times < n - 1; ++times) {
int st = -1;
vector<int> v;
for(int i = 1; i <= n; ++i) v.push_back(d.get(i));
sort(v.begin(), v.end());
v.erase(unique(v.begin(), v.end()), v.end());
vector<int> A, B;
vector<int> bits;
for(int bit = 0; (1 << bit) < n; ++bit) bits.push_back(bit);
shuffle(bits.begin(), bits.end(), rng);
int mn = INT_MAX;
for(int bit: bits) {
vector<int> c1, c2;
for(int i = 1; i <= n; ++i) {
if((d.get(i) - 1) & (1 << bit)) c1.push_back(i);
else c2.push_back(i);
}
if(c1.empty() || c2.empty()) continue;
if(query(c1, c2)) {
mn = ceil(log2(c1.size())) + ceil(log2(c2.size()));
A = c1, B = c2;
}
}
assert(A.size() > 0 && B.size() > 0);
sort(A.begin(), A.end());
sort(B.begin(), B.end());
int ansA = ask(A, B);
int ansB = ask(B, A);
d.uni(ansA, ansB);
setRoad(ansA, ansB);
}
}
/*
int main() {
int n; cin >> n;
run(n);
}
*/
Compilation message
icc.cpp: In function 'int ask(std::vector<int>, std::vector<int>)':
icc.cpp:37:21: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
37 | int mid = l + r >> 1;
| ~~^~~
icc.cpp: In function 'void run(int)':
icc.cpp:50:13: warning: unused variable 'st' [-Wunused-variable]
50 | int st = -1;
| ^~
icc.cpp:59:13: warning: variable 'mn' set but not used [-Wunused-but-set-variable]
59 | int mn = INT_MAX;
| ^~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
468 KB |
Ok! 137 queries used. |
2 |
Correct |
7 ms |
468 KB |
Ok! 137 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
43 ms |
468 KB |
Ok! 737 queries used. |
2 |
Correct |
56 ms |
496 KB |
Ok! 745 queries used. |
3 |
Correct |
40 ms |
468 KB |
Ok! 734 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
133 ms |
492 KB |
Ok! 1815 queries used. |
2 |
Correct |
153 ms |
484 KB |
Ok! 1806 queries used. |
3 |
Correct |
136 ms |
488 KB |
Ok! 1811 queries used. |
4 |
Correct |
131 ms |
504 KB |
Ok! 1796 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
137 ms |
480 KB |
Ok! 1768 queries used. |
2 |
Correct |
157 ms |
496 KB |
Ok! 1780 queries used. |
3 |
Correct |
137 ms |
488 KB |
Ok! 1799 queries used. |
4 |
Correct |
141 ms |
496 KB |
Ok! 1795 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
180 ms |
616 KB |
Too many queries! 1787 out of 1775 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
155 ms |
492 KB |
Too many queries! 1801 out of 1625 |
2 |
Halted |
0 ms |
0 KB |
- |