QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#732414 | #9570. Binary Tree | H_ZzZ | RE | 0ms | 9576kb | C++23 | 2.5kb | 2024-11-10 14:28:10 | 2024-11-10 14:28:10 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
int __ = 1;
const int N=4e5+50;
using pii=pair<int,int>;
struct node
{
int to,next,f;
}e[N*2];
int head[N],tot;
map<pii,int> mp;
void add(int u,int v)
{
//cout<<u<<" "<<v<<endl;
e[++tot].next=head[u];
e[tot].f=1;
e[tot].to=v;
head[u]=tot;
mp[{u,v}]=tot;
}
void delt(int u,int v)
{
int p=mp[{u,v}];
e[p].f=0;
p=mp[{v,u}];
e[p].f=0;
}
int ask(int u,int v)
{
cout<<"? "<<u<<" "<<v<<endl;
int res;cin>>res;
return res;
}
int siz[N],mson[N],cnt;
vector<int> pt;
void dfs(int u,int fa)
{
cnt++;
pt.push_back(u);
siz[u]=1;
mson[u]=0;
for(int i=head[u];i;i=e[i].next)
{
int v=e[i].to;
if(v==fa||!e[i].f)continue;
//cout<<u<<" "<<v<<endl;
dfs(v,u);
siz[u]+=siz[v];
mson[u]=max(mson[u],siz[v]);
}
}
void solve(){
int n;cin>>n;
mp.clear();
tot=0;
for(int i=1;i<=n;i++)
{
head[i]=0;
}
for(int i=1;i<=n;i++)
{
int u,v;cin>>u>>v;
if(u)add(i,u),add(u,i);
if(v)add(i,v),add(v,i);
}
int rt=1;
while (1)
{
for(int i=1;i<=n;i++)siz[i]=mson[i]=0;
cnt=0;
pt.clear();
dfs(rt,0);
if(cnt==1)
{
cout<<"! "<<rt<<endl;
return;
}
vector<int> h;
for(int u:pt)if(max(mson[u],cnt-siz[u])<=cnt/2)h.push_back(u);
//for(int u:pt)cout<<max(mson[u],cnt-siz[u])<<" ";cout<<endl;
//cout<<cnt<<" "<<pt.size()<<" "<<h.size()<<endl;
if(h.size()==1)
{
int u=h[0];
vector<int>s;
for(int i=head[u];i;i=e[i].next)if(e[i].f)s.push_back(e[i].to);
int res=ask(s[0],s[1]);
if(res==0)
{
rt=s[0];
delt(s[0],u);
}else if(res==1)
{
rt=u;
delt(s[0],u);
delt(s[1],u);
}else
{
rt=s[1];
delt(s[1],u);
}
}else
{
int res=ask(h[0],h[1]);
delt(h[0],h[1]);
if(res==0)rt=h[0];
else rt=h[1];
}
}
}
signed main(){
//ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);
cin >> __;
while (__--){
solve();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 9576kb
input:
2 5 0 0 1 5 2 4 0 0 0 0 1 0 2 0 2 0 0 2
output:
? 3 5 ? 2 1 ! 2 ? 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 0 2 8 0 0 1 4 2 0 0 0 7 8 0 0 3 0 6 0 0 1 2 8 5 8 0 0 1 7 0 0 0 0 4 2 0 0 6 0 0 0 0 5 4 5 3 1 0 0 0 0 0 0 0 2 8 0 0 0 0 5 6 0 0 1 4 2 0 3 8 0 0 1 1 0 5 3 0 5 1 0 0 0 0 4 0 0 2 5 5 0 0 0 0 0 3 0 2 4 1 0 3 3 0 1 0 0 0 2 2 2 0 0 0 2 3 2 3 0 0 0 0 1 10 2 8 9 7 0 ...
output:
? 2 8 ? 8 4 ? 8 5 ! 5 ? 3 7 ? 3 4 ? 2 1 ! 1 ? 1 8 ? 1 3 ? 1 5 ! 1 ? 2 5 ? 2 3 ! 3 ? 7 6 ? 4 1 ? 5 3 ! 5 ? 1 5 ? 1 3 ! 3 ? 4 2 ? 5 1 ! 5 ? 2 3 ! 3 ? 1 2 ! 2 ? 3 2 ! 1 ? 2 7 ? 9 1 ? 9 10 ! 10 ? 1 2 ! 1 ? 9 5 ? 9 2 ? 2 6 ! 6 ? 5 10 ? 8 2 ? 4 6 ! 6 ? 9 4 ? 8 5 ? 3 6 ! 3 ? 1 2 ! 1 ? 6 3 ? 7 1 ? 4 5