#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define MAXN (1000005)
int main() {
ios_base::sync_with_stdio(false);cin.tie(0);
ll N;
cin>>N;
vector<ll> unique; //exactly 1 representative from all different type of costumes
bool done[N + 1];
memset(done,0,sizeof(done));
for(ll i = 1;i <= N;i++){ //1-indexed
cout<<unique.size() + 1<<" ";
for(auto u : unique){
cout<<u<<" ";
}
cout<<i<<endl;
ll diff;
cin>>diff;
if(diff == ll(unique.size()) + 1){
unique.push_back(i);
done[i] = 1;
}
}
vector<ll> ans;
for(ll i = 1;i <= N;i++){
if(done[i]){
ans.push_back(i);
continue;
}
ll L = 0;
ll R = unique.size() - 1;
while(L != R){
ll mid = (L + R) / 2;
cout<<(mid - L + 1) + 1<<" ";
for(ll j = L;j <= mid;j++){
cout<<unique[j]<<" ";
}
cout<<i<<endl;
ll diff;
cin>>diff;
if(diff <= (mid - L + 1)){
R = mid;
}else{
L = mid + 1;
}
}
ans.push_back(L);
}
cout<<0<<" ";
for(auto u : ans){
cout<<u + 1<<" ";
}
cout<<endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
452 KB |
Integer 12 violates the range [1, 11] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
452 KB |
Integer 6 violates the range [1, 5] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
448 KB |
Integer 2 violates the range [1, 1] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
448 KB |
Integer 5 violates the range [1, 4] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
452 KB |
Integer 3 violates the range [1, 2] |
2 |
Halted |
0 ms |
0 KB |
- |