QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#733256 | #9570. Binary Tree | ucup-team134# | RE | 0ms | 11672kb | C++14 | 3.2kb | 2024-11-10 17:56:05 | 2024-11-10 17:56:06 |
Judging History
answer
#include<bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
typedef long long ll;
using namespace std;
typedef pair<int,int> pii;
const int mod=998244353;
inline int add(int x,int y){int ret=x+y;if(ret>=mod)ret-=mod;return ret;}
inline int sub(int x,int y){int ret=x-y;if(ret<0)ret+=mod;return ret;}
inline int mul(int x,int y){return ((ll)x*y)%mod;}
inline int step(int base,int pw){int ret=1;while(pw){if(pw&1)ret=mul(ret,base);base=mul(base,base);pw>>=1;}return ret;}
inline int invv(int x){return step(x,mod-2);}
const int maxn=3e5+10;
int n,nsz;
vector<int>vect[maxn];
int gpos[maxn],sz[maxn];
void precalc(int x,int prv){
sz[x]=1;
for(int i=0;i<vect[x].size();i++){
int id=vect[x][i];
if(id==prv || gpos[id])continue;
precalc(id,x);
sz[x]+=sz[id];
}
}
int go(int x,int prv){
int mx=nsz/2;
bool e=1;
for(int i=0;i<vect[x].size();i++){
int id=vect[x][i];
if(id==prv || gpos[id])continue;
if(mx<sz[id])e=0;
}
if(nsz-sz[x]>mx)e=0;
if(e){
return x;
}
for(int i=0;i<vect[x].size();i++){
int id=vect[x][i];
if(id==prv || gpos[id])continue;
int pom = go(id,x);
if(pom==-1)continue;
return pom;
}
return -1;
}
int qry(int a,int b){
printf("? %d %d\n",a,b);
fflush(stdout);
int ret;
scanf("%d",&ret);
return ret;
}
int main(){
///freopen("test.txt","r",stdin);
int t;
scanf("%d",&t);
while(t--){
scanf("%d",&n);
for(int i=1;i<=n;i++)gpos[i]=0;
for(int i=1;i<=n;i++){
vect[i].clear();
}
for(int i=1;i<=n;i++){
int a,b;
scanf("%d %d",&a,&b);
if(a!=0){
vect[i].pb(a);
vect[a].pb(i);
}
a=b;
if(a!=0){
vect[i].pb(a);
vect[a].pb(i);
}
}
int root=1;
int rez=-1;
while(1){
precalc(root,0);
if(sz[root]==1){
rez=root;
break;
}
nsz=sz[root];
int c=go(root,0);
vector<int>cand;
for(int i=0;i<vect[c].size();i++){
int id=vect[c][i];
if(gpos[id])continue;
cand.pb(id);
}
if(cand.size()==1){
int pom=qry(c,cand[0]);
if(pom==0)rez=c;
else rez=cand[0];
break;
}
int pom=qry(cand[0],cand[1]);
if(pom==0){
gpos[c]=1;
root=cand[0];
continue;
}
if(pom==1){
gpos[cand[0]]=1;
gpos[cand[1]]=1;
root=c;
continue;
}
if(pom==2){
gpos[c]=1;
root=cand[1];
continue;
}
}
printf("! %d\n",rez);
fflush(stdout);
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 11672kb
input:
2 5 0 0 1 5 2 4 0 0 0 0 1 1 2 0 2 0 0 2
output:
? 1 5 ? 2 4 ! 3 ? 1 2 ! 2
result:
ok OK (2 test cases)
Test #2:
score: -100
Runtime Error
input:
5555 8 2 0 8 6 0 0 3 0 0 0 7 0 0 0 5 4 2 2 0 8 0 0 1 4 2 0 0 0 7 8 0 0 3 0 6 0 2 2 0 8 5 8 0 0 1 7 0 0 0 0 4 2 0 0 6 0 2 1 2 5 4 5 3 1 0 0 0 0 0 0 1 0 8 0 0 0 0 5 6 0 0 1 4 2 0 3 8 0 0 0 2 5 3 0 5 1 0 0 0 0 4 0 0 0 5 5 0 0 0 0 0 3 0 2 4 1 2 3 3 0 1 0 0 0 2 2 2 0 0 0 2 3 2 3 0 0 0 0 2 10 2 8 9 7 0 0 ...
output:
? 1 8 ? 5 4 ? 4 3 ! 4 ? 2 7 ? 7 8 ? 8 6 ! 8 ? 5 8 ? 4 2 ? 6 8 ! 8 ? 4 5 ? 3 1 ! 3 ? 5 6 ? 1 4 ! 4 ? 5 1 ? 5 4 ! 5 ? 1 2 ? 3 5 ! 5 ? 3 2 ! 2 ? 1 2 ! 2 ? 2 3 ! 3 ? 1 9 ? 2 6 ? 4 3 ! 4 ? 1 2 ! 1 ? 5 9 ? 2 1 ? 2 6 ! 2 ? 3 10 ? 6 2 ? 4 10 ! 10 ? 3 4 ? 1 7 ? 8 2 ! 2 ? 1 2 ! 2 ? 4 3 ? 1 7 ! 7 ? 4 9 ? 8 4 ?...