# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
547511 | 2022-04-10T21:31:52 Z | seungho9422 | Carnival (CEOI14_carnival) | C++17 | 94 ms | 304 KB |
#include <bits/stdc++.h> using namespace std; const int N = 160; int ans[N]; int main() { int n, a, b, pos, mid, res, prv, now; vector <int> v; 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 | 84 ms | 208 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 79 ms | 304 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 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 | 87 ms | 300 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 94 ms | 296 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |