QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#343386#8239. Mysterious Tree111445#WA 1ms3604kbC++23768b2024-03-02 14:57:352024-03-02 14:57:35

Judging History

你现在查看的是最新测评结果

  • [2024-03-02 14:57:35]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3604kb
  • [2024-03-02 14:57:35]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;

#define N 1000000
int i,j,k,n,m,t;

int ask(int x,int y){
	cout<<"? "<<x<<' '<<y<<endl;
	cin>>x;
	return x;
}

int chk(int x,int y){
	if(!ask(x,y))return 0;
	
	int i,t1=0,t2=0;
	for(i=1;i<=n;i++)if(i!=x&&i!=y){
		if(!t1)t1=i;
		else t2=i;
	}
	
	if(ask(x,t1)){
		if(ask(x,t2))return 1;
		return 0;
	}
	
	if(ask(y,t1)){
		if(ask(y,t2))return 1;
		return 0;
	}
	
	return 0;
}

int fuck(){
	for(i=2;i<=n;i+=2){
		if(chk(i,i+1))return 1;
	}
	if(n&1){
		if(chk(n-1,n))return 1;
	}
	return 0;
}

int main(){
	ios::sync_with_stdio(0); cin.tie(0);
	cin>>t;
	while(t--){
		cin>>n;
		if(fuck()){
			cout<<"! "<<2<<endl;
		}
		else cout<<"! "<<1<<endl;
	}
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3604kb

input:

2
4
1
1
0

output:

? 2 3
? 2 1
? 2 4
? 4 5

result:

wrong answer Integer 5 violates the range [1, 4] (test case 1)