AcWing 240. 食物链

Posted wisexu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AcWing 240. 食物链相关的知识,希望对你有一定的参考价值。

AcWing 240. 食物链


#include <bits/stdc++.h>
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;i<=n;i++) p[i]=i;
    int res=0;
    while(m--){
        int t,x,y;
        scanf("%d%d%d",&t,&x,&y);
        if(x>n||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. 食物链的主要内容,如果未能解决你的问题,请参考以下文章

# [acwing 240] 食物链 [并查集]

AcWing 240. 食物链

ACWing 240. 食物链 带权并查集

AcWing:240. 食物链(扩展域并查集)

240. 食物链(并查集+数论)

acwing3132. 食物(BZOJ3028)