#include<bits/stdc++.h>
using namespace std;
int ask(vector<int> &v) {
int x;
cout << v.size() << ' ';
for (int i: v) cout << i << ' ';
cout << endl;
cin >> x;
return x;
}
int col[155], C[100000];
vector<int> v;
void solve() {
int n;
cin >> n;
set<int> s;
for (int i = 1; i <= n; i++) col[i] = i;
for (int i = 1; i <= n; i++) {
v.clear();
int l = i, r = n, mid, pos = 1e9;
while(l <= r) {
v.clear();
mid = (l + r) / 2;
for (int j = i; j <= mid; j++) {
v.push_back(j);
}
int ans = ask(v);
v.erase(v.begin());
int ans2 = ask(v);
if(ans == ans2) {
pos = min(pos, mid);
r = mid - 1;
}
else l = mid + 1;
}
if(pos != 1e9) col[pos] = col[i];
//cout << "DM " << i << ' ' << pos << '\n';
}
cout << 0 << ' ';
for (int i = 1; i <= n; i++) s.insert(col[i]);
int cnt = 0;
for (int i: s) C[i] = ++cnt;
for (int i = 1; i <= n; i++) cout << C[col[i]] << ' ';
}
signed main() {
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int t = 1;
// cin >> t;
while(t--) {
solve();
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2 ms |
344 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
0 ms |
344 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1 ms |
344 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1 ms |
344 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1 ms |
344 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |