1503 愚蠢的宠物
Posted 神犇(shenben)
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1503 愚蠢的宠物相关的知识,希望对你有一定的参考价值。
分析:没必要用并查集,数据一定是裸的mst(最小生成树),直接O(n)找lca即可AC。
代码:
#include<cstdio> #include<iostream> using namespace std; #define N 10010005 int fa[N],n,m; bool check[N];//数据一定是mst int main(){ scanf("%d",&n); for(int i=1,x,y;i<n;i++){ cin>>x>>y; fa[y]=x; } int from,to; cin>>from>>to; while(from){//O(n)往上搜 check[from]=true; from=fa[from]; } while(to){ if(check[to]){ printf("%d\n",to); return 0; } to=fa[to]; } return 0; }
以上是关于1503 愚蠢的宠物的主要内容,如果未能解决你的问题,请参考以下文章