Submission #475701

# Submission time Handle Problem Language Result Execution time Memory
475701 2021-09-23T17:16:18 Z ZaZo_ Carnival (CEOI14_carnival) C++14
0 / 100
9 ms 200 KB
#include <bits/stdc++.h>
#define HID ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define int long long
#define all(v) v.begin(),v.end()
const int N = 2010 , INF = 1e15;
using namespace std;
int n , x , all;
int ans[160] = {0};
int check(vector<int>v)
{
  cout<<v.size()<<" ";
  for(int i = 0 ; i < v.size() ; i++) cout<<v[i]<<" ";
  cout<<endl;
  cin >> x;
  return x;
}
int num=2;
int32_t main() {
  //HID
  int maxnum=0;
  cin >> n;
  cout<<n<<" ";
  for(int i = 1 ; i <= n ; i++) cout<<i<<" ";
  cout<<endl;
  cin>>x;
  maxnum=x;
  vector<int>in;
  ans[1]=1;
  in.push_back(1);
  for(int i = 2 ; i <= n ; i++)
  {
    in.push_back(i);
    if(check(in) == in.size()) ans[i] = in.size();
    else
    {
      in.pop_back();
      int l = 0 , r = in.size()-1 , cur=-1;
      while(l<r)
      {
        int mid = (l+r)/2;
        vector<int>out;
        for(int j = 0 ; j <= mid ; j++) out.push_back(in[j]);
        out.push_back(i);
        if(check(out) == out.size()-1)
          r = mid-1 , cur = mid;
        else l = mid+1;
      }
      //cout<<i <<"!"<< in[cur]<<endl;
      if(cur!=-1)
      {
        if(ans[in[cur]]==0 && ans[i]==0) ans[i] = ans[in[cur]] = num , num++;
        else if(ans[in[cur]]!=0) ans[i] = ans[in[cur]];
        else if(ans[i]!=0) ans[in[cur]] = ans[i];
      }
      else
       ans[i] = num , num++;
      if(num>maxnum) num--;
    }
  }

  cout<<"0 ";
  for(int i = 1 ; i <= n ; i++) cout<<ans[i]<<" ";
}

Compilation message

carnival.cpp: In function 'long long int check(std::vector<long long int>)':
carnival.cpp:12:21: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   12 |   for(int i = 0 ; i < v.size() ; i++) cout<<v[i]<<" ";
      |                   ~~^~~~~~~~~~
carnival.cpp: In function 'int32_t main()':
carnival.cpp:33:18: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   33 |     if(check(in) == in.size()) ans[i] = in.size();
      |        ~~~~~~~~~~^~~~~~~~~~~~
carnival.cpp:44:23: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   44 |         if(check(out) == out.size()-1)
      |            ~~~~~~~~~~~^~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 6 ms 200 KB Incorrect
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 200 KB Incorrect
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 200 KB Integer 2 violates the range [1, 1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 200 KB Incorrect
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 4 ms 200 KB Output is correct
2 Incorrect 9 ms 200 KB Incorrect
3 Halted 0 ms 0 KB -