Submission #171330

# Submission time Handle Problem Language Result Execution time Memory
171330 2019-12-28T11:02:52 Z MvC Carnival (CEOI14_carnival) C++11
0 / 100
8 ms 416 KB
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
#define rc(x) return cout<<x<<endl,0
#define pb push_back
#define mkp make_pair
#define in insert
#define er erase
#define fd find
#define fr first
#define sc second
typedef long long ll;
typedef long double ld;
const ll INF=0x3f3f3f3f3f3f3f3f;
const ll llinf=(1LL<<62);
const int inf=(1<<30);
const int nmax=1e5+50;
const int mod=1e9+7;
using namespace std;
int n,i,j,t,l,r,mid,p[155],a[155],c[155],col,rs,x;
int main()
{
	//freopen("sol.in","r",stdin);
	//freopen("sol.out","w",stdout);
	//mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
	ios_base::sync_with_stdio(false);cin.tie(0);cerr.tie(0);cout.tie(0);
	cin>>n;
	for(i=1;i<=n;i++)p[i]=i;
	a[++j]=1;
	for(i=2;i<=n;i++)
	{
		cout<<j+1<<" "<<i;
		for(t=1;t<=j;t++)cout<<" "<<a[t];
		cout<<endl;
		cin>>x;
		if(x==j+1)a[++j]=i;
		else
		{
			l=1,r=j;
			while(l<r)
			{
				mid=(l+r)/2;
				cout<<mid-l+2<<" "<<i;
				for(t=l;t<=mid;t++)cout<<" "<<a[t];
				cout<<endl;
				cin>>x;
				if(x==mid-l+2)l=mid+1;
				else rs=mid,r=mid;
			}
			p[i]=a[rs];
		}
	}
	cout<<0;
	for(i=1;i<=n;i++)
	{
		if(!c[p[i]])c[p[i]]=++col;
		cout<<" "<<c[p[i]];
	}
	cout<<endl;
	return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 8 ms 376 KB Incorrect
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 7 ms 376 KB Integer 6 violates the range [1, 5]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 376 KB Integer 2 violates the range [1, 1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 376 KB Incorrect
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 416 KB Integer 3 violates the range [1, 2]
2 Halted 0 ms 0 KB -