답안 #575041

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
575041 2022-06-09T14:39:24 Z Uzouf 사육제 (CEOI14_carnival) C++14
0 / 100
1 ms 208 KB
#include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
//using namespace __gnu_pbds;
#define ll long long
#define endl "\n"
//int mod=1e9+7;
//const int N=2e5+5;
//template<class x>
//using ordered_multiset = tree<x, null_type,less_equal<x>, rb_tree_tag,tree_order_statistics_node_update>;
 
int n,c;
int col[155];
 
signed main() {
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    //freopen(".in", "r", stdin); freopen(".out", "w", stdout);
 
    cin>>n;
 
    set<int> ask;
    ask.insert(1); col[1]=1; c=1;
 
    for (int i=2;i<=n;i++) {
      int sz=ask.size()+1;
 
      cout<<sz<<' ';
      auto j=ask.begin();
      while (j!=ask.end()) {
        cout<<*j<<' ';
        j++;
      }
 
      cout<<i<<endl;
      fflush(stdout);
      int nm; cin>>nm;
 
      if (nm!=sz) {
        auto j=ask.begin();
        while (j!=ask.end()) {
          cout<<*j<<' '<<i<<endl;
          fflush(stdout);
          int gg; cin>>gg;
          if (gg==1) {
            col[i]=col[*j]; ask.erase(*j);
            break;
          }
          j++;
        }
      }
      else {
        c++; col[i]=c;
      }
      ask.insert(i);
    }
 
    cout<<0<<' ';
    for(int i=1;i<=n;i++) {
      cout<<col[i]<<' ';
    }
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1 ms 208 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 0 ms 208 KB Time limit exceeded (wall clock)
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 Execution timed out 1 ms 208 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 0 ms 208 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -