Submission #818904

# Submission time Handle Problem Language Result Execution time Memory
818904 2023-08-10T07:15:40 Z Faisal_Saqib Carnival (CEOI14_carnival) C++17
0 / 100
13 ms 340 KB
#include <iostream>
#include <set>
#include <vector>
using namespace std;
int main()
{
	int n;
	cin>>n;
	int val[n+3];
	set<int> head;
	for(int i=1;i<=n;i++)
	{
		val[i]=i;
	}
	head.insert(1);
	int c;
	for(int i=2;i<=n;i++)
	{
		cout<<((int)head.size())+1;
		for(auto j:head)
		{
			cout<<' '<<j;
		}
		cout<<' '<<i<<endl;
		cin>>c;
		if(c==(int)head.size())
		{
			for(auto j:head)
			{
				cout<<2<<' '<<j<<' '<<i<<endl;
				cin>>c;
				if(c==1)
				{
					val[i]=val[j];
					break;
				}
			}
		}
		else
		{
			head.insert(i);
		}
	}
	cout<<0;
	for(int i=1;i<=n;i++)
	{
		cout<<' '<<val[i];
	}
	cout<<endl;
	return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 8 ms 208 KB Integer 19 violates the range [1, 11]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 208 KB Integer 6 violates the range [1, 5]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 3 ms 208 KB Output is correct
2 Incorrect 4 ms 208 KB Integer 11 violates the range [1, 8]
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 208 KB Integer 5 violates the range [1, 4]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 3 ms 340 KB Output is correct
2 Incorrect 13 ms 208 KB Integer 20 violates the range [1, 17]
3 Halted 0 ms 0 KB -