Submission #921252

# Submission time Handle Problem Language Result Execution time Memory
921252 2024-02-03T15:39:03 Z PM1 Carnival (CEOI14_carnival) C++17
0 / 100
3 ms 344 KB
#include <bits/stdc++.h>
using namespace std;
const int mxn=155;
int n,comp[mxn],sz,cnt;
bool a[mxn];
int main(){
	cin>>n;
	for(int i=1;i<=n;i++){
		a[i]=1;
		sz++;
		cout<<sz<<" ";
		for(int j=1;j<=i;j++){
			if(a[j])cout<<j<<" ";
		}
		cout<<endl;
		int x;
		cin>>x;
		if(x==sz){
			comp[i]=++cnt;
			continue;
		}
		int L=1,R=sz;
		while(R-L>1){
			int mid=(L+R)/2,sum=0;
			cout<<mid-L+1<<" ";
			for(int j=1;j<i;j++){
				sum+=a[j];
				if(a[j] && sum>=L && sum<mid)cout<<j<<" ";
			}
			cout<<i<<endl;
			cin>>x;
			if(x==mid-L+1)
				L=mid;
			else
				R=mid;
		}
		for(int j=1;j<i;j++){
			L-=a[j];
			if(a[j] && L==0)comp[i]=j;
		}
		a[i]=0;
		sz--;
	}
	cout<<0<<" ";
	for(int i=1;i<=n;i++)
		cout<<comp[i]<<" ";
	cout<<endl;
}
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 344 KB Integer 19 violates the range [1, 11]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 344 KB Integer 6 violates the range [1, 5]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Incorrect 2 ms 344 KB Integer 11 violates the range [1, 8]
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 344 KB Integer 5 violates the range [1, 4]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Incorrect 3 ms 344 KB Integer 22 violates the range [1, 17]
3 Halted 0 ms 0 KB -