码迷,mamicode.com
首页 > Windows程序 > 详细

AcWing 240. 食物链

时间:2020-07-30 14:43:50      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:return   pre   main   int   turn   its   c++   find   mes   

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. 食物链

标签:return   pre   main   int   turn   its   c++   find   mes   

原文地址:https://www.cnblogs.com/wiseXu/p/13403052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!