QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#712017 | #8239. Mysterious Tree | KafuuChinocpp# | WA | 1ms | 3900kb | C++14 | 1.1kb | 2024-11-05 14:18:31 | 2024-11-05 14:18:32 |
Judging History
answer
#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int N=3e5+10;
int T,n;
void solve(){
cin>>n;
int flag=0;
for(int i=1;i<=n;i+=2){
if(i!=n) printf("? %d %d\n",i,i+1), fflush(stdout);
else printf("? %d %d\n",i,i-1), fflush(stdout);
int ans;
cin>>ans;
if(ans){
if(i!=n){
int res[2]={0}, cnt=0;
for(int j=1;j<=n;j++){
if(j!=i&&j!=i+1){
printf("? %d %d\n",i,j); fflush(stdout);
cin>>res[cnt++];
}
if(cnt==2){
if(res[0]&&res[1]) printf("! 2\n"), fflush(stdout);
else printf("! 1\n"), fflush(stdout);
flag=1;
break;
}
}
}
else{
int res[2]={0};
printf("? %d 1\n",n); fflush(stdout); cin>>res[0];
printf("? %d 2\n",n); fflush(stdout); cin>>res[1];
if(res[0]&&res[1]) printf("! 2\n"), fflush(stdout);
else printf("! 1\n"), fflush(stdout);
flag=1;
break;
}
break;
}
}
if(!flag) printf("! 1\n"), fflush(stdout);
}
int main(){
ios::sync_with_stdio(false); cin.tie(0);
cin>>T;
while(T--) solve();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 3900kb
input:
2 4 1 0 0 4 0 1 1 1
output:
? 1 2 ? 1 3 ? 1 4 ! 1 ? 1 2 ? 3 4 ? 3 1 ? 3 2 ! 2
result:
ok Correct (2 test cases)
Test #2:
score: -100
Wrong Answer
time: 1ms
memory: 3824kb
input:
87 13 0 0 0 0 0 1 0 0
output:
? 1 2 ? 3 4 ? 5 6 ? 7 8 ? 9 10 ? 11 12 ? 11 1 ? 11 2 ! 1
result:
wrong answer Wrong prediction (test case 1)