This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "chameleon.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define pii pair<int,int>
void Solve(int n) {
	if(n<=50){
		vector<bool> was(n*2+1,false);
		vector<vector<int>> cand(n*2+1,vector<int>());
		set<pii> bad;
		for(int j=1;j<=n*2;j++){
			for(int i=1;i<=n*2;i++)if(i!=j){
				if(Query({j,i})==1)cand[j].pb(i);
			}
			assert(cand[j].size()==1||cand[j].size()==3);
			if(cand[j].size()==3){
				int A=Query({j,cand[j][0],cand[j][1]});
				int B=Query({j,cand[j][1],cand[j][2]});
				int C=Query({j,cand[j][2],cand[j][0]});
				if(A==1)bad.insert({j,cand[j][2]});
				if(B==1)bad.insert({j,cand[j][0]});
				if(C==1)bad.insert({j,cand[j][1]});
			}
		}
		for(int j=1;j<=n*2;j++){
			if(was[j])continue;
			for(int i:cand[j]){
				if(!bad.count({i,j})&&!bad.count({j,i})){
					Answer(i,j);
					was[i]=was[j]=true;
					break;
				}
			}
		}
	}else{
		vector<bool> was(n*2+1,false);
		vector<vector<int>> cand(n*2+1,vector<int>());
		set<pii> bad;
		for(int j=1;j<=n*2;j++){
			vector<int> all;
			if(j<=n)for(int i=n+1;i<=n*2;i++)all.pb(i);
			else for(int i=1;i<=n;i++)all.pb(i);
			for(int work=1;work<=3;work++){
				vector<int> tmp=all;
				while(tmp.size()>1){
					vector<int> v[2];
					for(int i=0;i<tmp.size();i++)v[i&1].pb(tmp[i]);
					v[0].pb(j);
					int B=Query(v[0]);
					v[0].pop_back();
					if(B<=v[0].size())tmp=v[0];
					else tmp=v[1];
				}
				if(work==2&&Query({j,tmp[0]})==2)break;
				cand[j].pb(tmp[0]);
				vector<int> nxt;
				for(int i:all)if(i!=tmp[0])nxt.pb(i);
				all=nxt;
			}
			assert(cand[j].size()==1||cand[j].size()==3);
			if(cand[j].size()==3){
				int A=Query({j,cand[j][0],cand[j][1]});
				int B=Query({j,cand[j][1],cand[j][2]});
				int C=Query({j,cand[j][2],cand[j][0]});
				if(A==1)bad.insert({j,cand[j][2]});
				if(B==1)bad.insert({j,cand[j][0]});
				if(C==1)bad.insert({j,cand[j][1]});
			}
		}
		for(int j=1;j<=n*2;j++){
			if(was[j])continue;
			for(int i:cand[j]){
				if(!bad.count({i,j})&&!bad.count({j,i})){
					Answer(i,j);
					was[i]=was[j]=true;
					break;
				}
			}
		}
		/*vector<bool> was(n*2+1,false);
		for(int j=1;j<=n*2;j++){
			if(was[j])continue;
			vector<int> all;
			for(int i=1;i<=n*2;i++)if(i!=j)all.pb(i);
			while(all.size()>1){
				vector<int> v[2];
				for(int i=0;i<all.size();i++)v[i&1].pb(all[i]);
				int A=Query(v[0]);
				v[0].pb(j);
				int B=Query(v[0]);
				v[0].pop_back();
				if(A==B)all=v[0];
				else all=v[1];
			}
			was[all[0]]=was[j]=true;
			Answer(j,all[0]);
		}*/
	}
}
Compilation message (stderr)
chameleon.cpp: In function 'void Solve(int)':
chameleon.cpp:48:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
      for(int i=0;i<tmp.size();i++)v[i&1].pb(tmp[i]);
                  ~^~~~~~~~~~~
chameleon.cpp:52:10: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
      if(B<=v[0].size())tmp=v[0];
         ~^~~~~~~~~~~~~| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |