# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
547509 | 2022-04-10T21:30:34 Z | seungho9422 | Carnival (CEOI14_carnival) | C++17 | 108 ms | 296 KB |
#include <bits/stdc++.h> using namespace std; const int N = 160; int ans[N]; vector <int> v; int main() { int n, a, b, pos, mid, res, prv, now; cin.tie(0)->sync_with_stdio(0); cin >> n; for(int i = 1; i <= n; i++) { cout << i << ' '; for(int j = 1; j <= i; j++) { cout << j << ' '; } cout << endl; cin >> now; if(now != prv) { v.push_back(i); ans[i] = now; prv = now; continue; } a = 0, b = v.size() - 1; while(a != b) { mid = (a+b) / 2; cout << mid + 2 << ' '; for(int i = 0; i <= mid; i++) { cout << v[i] << ' '; } cout << i << endl; cin >> res; if(res < mid + 2) { b = mid - 1; pos = mid; } else { a = mid + 1; } } ans[i] = ans[v[pos]]; } for(int i = 0; i <= n; i++) { cout << ans[i] << ' '; } cout << endl; return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 92 ms | 296 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 108 ms | 296 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 208 KB | Integer 0 violates the range [1, 1] |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 76 ms | 296 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 89 ms | 208 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |