답안 #908831

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
908831 2024-01-17T00:11:06 Z vjudge1 사육제 (CEOI14_carnival) C++17
0 / 100
12 ms 440 KB
#include<bits/stdc++.h>
#define endl '\n'
#define mp make_pair
#define pb push_back
#define all(x) x.begin(),x.end()
#define f first
#define s second
#define fore(i,l,r) for(int i = l; i < r;i++)
#define fo(i,n) fore(i,0,n)
#define ll long long
#define ii pair<int,int>
using namespace std;
using vi = vector<int>;
vector<int> arr;
map<int,int> idx;
int cnt = 1;
int main() {
    int n;
    cin >> n;arr.pb(1);
    fore(i,2 ,n+1){
        cout << i << " ";cout.flush();
        fo(j,i){
            cout << j+1 << " ";cout.flush();
        }
        cout << endl;cout.flush();
        int a;cin>>a;
        if(a == cnt+1){
            idx[cnt+1]=i;cnt++;arr.pb(cnt);
        }else{
            int l = 1, r= cnt;
            while(l<=r){
                int mid = (l+r)/2;
                int posmid = (idx[mid]);
                int k = (posmid-idx[l]+1);
                cout << k+1 << " ";cout.flush();
                set<int> howman;
                fo(li,k){
                    cout << li+l << " ";cout.flush();
                    howman.insert(arr[li+l-1]);
                }
                cout << i<<" ";cout.flush();
                cout<<endl;cout.flush();
                int cn;cin>>cn;
                if(cn==howman.size())r=mid-1;
                else l = mid+1;
            }
            arr.pb(l);
        }
    }
    cout << 0 << " ";
    fo(i,n){
        cout << arr[i] << " ";cout.flush();
    }
}

Compilation message

carnival.cpp: In function 'int main()':
carnival.cpp:44:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::set<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   44 |                 if(cn==howman.size())r=mid-1;
      |                    ~~^~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 436 KB Integer 12 violates the range [1, 11]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 8 ms 436 KB Integer 6 violates the range [1, 5]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 436 KB Output is correct
2 Incorrect 12 ms 440 KB Integer 9 violates the range [1, 8]
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 436 KB Integer 5 violates the range [1, 4]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 428 KB Output is correct
2 Incorrect 8 ms 432 KB Integer 18 violates the range [1, 17]
3 Halted 0 ms 0 KB -