#include <iostream>
#include <vector>
using namespace std;
int n;
vector <int> v(200, 1);
vector <int> d(200, 1);
int query(int x, int r) {
cout << r + 1 << " ";
for (int i = 1; i <= r; i++) cout << i << " ";
cout << x << endl;
cin >> x;
return x;
}
void solve(int x) {
int l = 0, r = x, m;
while (r - l > 1) {
m = (l + r) / 2;
query(x, m) > d[m] ? l = m : r = m;
}
v[x] = r;
d[x] = d[x - 1] + (v[x] == x);
}
int main() {
cin >> n;
for (int i = 2; i <= n; i++) solve(i);
for (int i = 1; i <= n; i++) cout << v[i] << " ";
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
344 KB |
Same person came twice to the party. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
344 KB |
Same person came twice to the party. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
344 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
344 KB |
Same person came twice to the party. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
344 KB |
Same person came twice to the party. |
2 |
Halted |
0 ms |
0 KB |
- |