# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
775775 | 2023-07-06T22:39:10 Z | Pichon5 | 사육제 (CEOI14_carnival) | C++17 | 1 ms | 208 KB |
#include <iostream> #include <vector> #include <set> #include <map> #include <algorithm> #include <string> #include <sstream> #include <fstream> #include <cmath> #include <queue> #include <stack> #include <unordered_map> #include <unordered_set> #include <bitset> #include <bits/stdc++.h> #define lcm(a,b) (a/__gcd(a,b))*b #define ke ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); #define pb push_back #define F first #define S second #define vi vector<int> #define ll long long using namespace std; int queryRange(int izq, int der){ cout<<der-izq+1<<" "; for(int i=izq;i<=der;i++){ cout<<i<<" "; } cout<<endl; int x; cin>>x; return x; } vi v; int queryV(int m, int j){ cout<<m+2<<" "; for(int i=0;i<=m;i++){ cout<<v[i]<<" "; } cout<<j<<" "; cout<<endl; int x; cin>>x; return x; } int main(){ ke int n; cin>>n; vi res; for(int i=1;i<=n;i++){ int y=queryRange(1,i); if(y>(int)v.size()){ res.pb(int(v.size())+1); v.pb(int(v.size())+1); }else{ int b=0,e=v.size()-1; int cualEs=0; while(b<=e){ int mid=(b+e)/2; int x=queryV(mid,i); if(mid+1==x){ cualEs=mid; e=mid-1; }else{ b=mid+1; } } cout<<cualEs<<" "<<v[cualEs]<<endl; res.pb(v[cualEs]); } } for(auto it : v){ cout<<it<<" "; } cout<<endl; cout<<0<<" "; for(int i=0;i<res.size();i++){ cout<<res[i]<<" "; } cout<<endl; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 208 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 208 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 208 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1 ms | 208 KB | Time limit exceeded (wall clock) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 208 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |