# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1042064 | 2024-08-02T13:49:29 Z | AbdullahIshfaq | Carnival (CEOI14_carnival) | C++14 | 2 ms | 344 KB |
#include <bits/stdc++.h> using namespace std; #define ll long long #define MOD 1000000007 ll ask(ll x , ll y){ cout << y - x + 1 << " "; for(int i = x ; i <= y ; i++){ cout << i << " "; } cout << endl; int c; cin >> c; return c; } void solve(){ ll w , f , n , summ = 0; cin >> n; vector<ll> ans(n + 1); ans[1] = 1; set<ll> st; for(int i = 2; i <= n ;i ++){ st.clear(); for(int j = 1 ; j <= i -1;j++){ st.insert(ans[j]); } ll x = ask(1, i); if(st.size() != x){ ans[i] = x; continue; } ll l = 1,r= i; while(r - l > 1){ ll mid = (l + r) / 2; st.clear(); for(int j = mid; j<= i - 1;j ++){ st.insert(ans[j]); } x = ask(mid , i); cout << st.size() << " "<< x << '\n'; if(st.size() == x){ l = mid; } else{ r = mid; } } ans[i] = ans[l]; } cout << 0 << " "; for(int i = 1; i<=n ; i++){ cout << ans[i] << " "; } cout << endl; } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int tests = 1; // cin >> tests; for (int i = 1; i <= tests; i++){ solve(); } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 344 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 344 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 344 KB | Output is correct |
2 | Runtime error | 0 ms | 344 KB | Execution killed with signal 13 |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 344 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 344 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |