AcWing 240. 食物链
标签:return pre main int turn its c++ find mes
AcWing 240. 食物链
#include
using namespace std;
const int N=1e6+10;
int n,m;
int p[N],d[N];
//find函数返回的是根节点
int find(int x){
if(p[x]!=x){
int t=find(p[x]);
d[x]+=d[p[x]];
p[x]=t;
}
return p[x];
}
int main(){
scanf("%d%d",&n,&m);
for(int i=1;in||y>n) res++;
else{
int px=find(x),py=find(y);
if(t==1){
if(px==py&&(d[x]-d[y])%3) res++;
else if(px!=py){
p[px]=py;
d[px]=d[y]-d[x];
}
}
else{
if(px==py&&(d[x]-d[y]-1)%3) res++;
else if(px!=py){
p[px]=py;
d[px]=d[y]+1-d[x];
}
}
}
}
printf("%d",res);
return 0;
}
AcWing 240. 食物链
标签:return pre main int turn its c++ find mes
原文地址:https://www.cnblogs.com/wiseXu/p/13403052.html
评论