#include "icc.h"
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
// #define int long long
// #define double long double
// #define endl '\n'
#define fastIO ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
#define setmin(x, y) x = min((x), (y))
#define setmax(x, y) x = max((x), (y))
#define sqr(x) ((x) * (x))
#define fi first
#define se second
#define all(x) x.begin(), x.end()
mt19937 hdp(chrono::high_resolution_clock::now().time_since_epoch().count());
int rand(int l, int r){return l + ((hdp() % (r - l + 1)) + r - l + 1) % (r - l + 1);}
const int NM = 105;
// void setRoad(int x, int y)
// {
// cout << '!' << endl;
// cout << x << ' ' << y << endl;
// }
// int query(int n, int m, int a[], int b[])
// {
// cout << '?' << endl;
// // cout << n << ' ' << m << endl;
// for (int i = 0; i < n; i++)
// cout << a[i] << ' ';
// cout << endl;
// for (int i = 0; i < m; i++)
// cout << b[i] << ' ';
// cout << endl;
// int res;
// cin >> res;
// return res;
// }
int query(vector<int>& a, vector<int>& b)
{
int A[a.size()], B[b.size()];
for (int i = 0; i < a.size(); i++)
A[i] = a[i];
for (int i = 0; i < b.size(); i++)
B[i] = b[i];
return query((int)a.size(), (int)b.size(), A, B);
}
int cnt = 0, NN;
int BS(vector<int> a, vector<int>& b)
{
int l = 0, r = a.size();
while (l < r - 1)
{
cnt++;
int m = l + r >> 1;
vector<int> t(a.begin(), a.begin() + m);
if (query(t, b))
r = m;
else
l = m;
}
return a[r - 1];
}
int id[NM], p[NM];
vector<int> v[NM];
set<int> s, did;
vector<int> a, b;
int find(int x)
{
return p[x] == x ? x : find(p[x]);
}
void merge(int x, int y)
{
x = find(x), y = find(y);
if (v[x].size() < v[y].size())
swap(x, y);
p[y] = x;
s.erase(y);
for (int t : v[y])
v[x].push_back(t);
}
void run(int N)
{
NN = N;
iota(p + 1, p + 1 + N, 1);
for (int i = 1; i <= N; i++)
{
v[i].push_back(i);
s.insert(i);
}
for (int n = N; n >= 2; n--)
{
auto it = s.begin();
for (int i = 1; i <= n; i++, it = next(it))
id[i] = *it;
while (1)
{
cnt++;
// assert(cnt <= 5 * NN);
shuffle(id + 1, id + 1 + n, hdp);
a.clear(); b.clear();
for (int i = 1; i <= n; i++)
for (auto t : v[id[i]])
{
if (i <= n / 2)
a.push_back(t);
else
b.push_back(t);
}
if (query(a, b))
break;
}
int x = BS(a, b), y = BS(b, a);
setRoad(x, y);
merge(x, y);
}
}
// int main()
// {
// int N;
// cin >> N;
// run(N);
// }
Compilation message
icc.cpp: In function 'int query(std::vector<int>&, std::vector<int>&)':
icc.cpp:48:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
48 | for (int i = 0; i < a.size(); i++)
| ~~^~~~~~~~~~
icc.cpp:50:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
50 | for (int i = 0; i < b.size(); i++)
| ~~^~~~~~~~~~
icc.cpp: In function 'int BS(std::vector<int>, std::vector<int>&)':
icc.cpp:63:19: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
63 | int m = l + r >> 1;
| ~~^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
444 KB |
Ok! 101 queries used. |
2 |
Correct |
4 ms |
604 KB |
Ok! 98 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
26 ms |
640 KB |
Ok! 528 queries used. |
2 |
Correct |
45 ms |
604 KB |
Ok! 839 queries used. |
3 |
Correct |
36 ms |
600 KB |
Ok! 798 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
177 ms |
632 KB |
Ok! 1562 queries used. |
2 |
Correct |
125 ms |
600 KB |
Ok! 2097 queries used. |
3 |
Correct |
112 ms |
632 KB |
Ok! 1734 queries used. |
4 |
Correct |
102 ms |
632 KB |
Ok! 1717 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
102 ms |
600 KB |
Ok! 1625 queries used. |
2 |
Correct |
99 ms |
644 KB |
Ok! 1672 queries used. |
3 |
Correct |
158 ms |
644 KB |
Ok! 1859 queries used. |
4 |
Correct |
92 ms |
600 KB |
Ok! 1555 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
115 ms |
604 KB |
Too many queries! 1933 out of 1775 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
113 ms |
604 KB |
Too many queries! 1923 out of 1625 |
2 |
Halted |
0 ms |
0 KB |
- |