zoukankan      html  css  js  c++  java
  • bzoj1116 [POI2008]CLO

    题目链接

    画画图发现如果某一个连通块中没有环那么就不可能存在方案

    所以直接并查集维护一个连通块中有没有环

     1 #include<algorithm>
     2 #include<iostream>
     3 #include<cstdlib>
     4 #include<cstring>
     5 #include<cstdio>
     6 #include<string>
     7 #include<cmath>
     8 #include<ctime>
     9 #include<queue>
    10 #include<stack>
    11 #include<map>
    12 #include<set>
    13 #define rre(i,r,l) for(int i=(r);i>=(l);i--)
    14 #define re(i,l,r) for(int i=(l);i<=(r);i++)
    15 #define Clear(a,b) memset(a,b,sizeof(a))
    16 #define inout(x) printf("%d",(x))
    17 #define douin(x) scanf("%lf",&x)
    18 #define strin(x) scanf("%s",(x))
    19 #define LLin(x) scanf("%lld",&x)
    20 #define op operator
    21 #define CSC main
    22 typedef unsigned long long ULL;
    23 typedef const int cint;
    24 typedef long long LL;
    25 using namespace std;
    26 void inin(int &ret)
    27 {
    28     ret=0;int f=0;char ch=getchar();
    29     while(ch<'0'||ch>'9'){if(ch=='-')f=1;ch=getchar();}
    30     while(ch>='0'&&ch<='9')ret*=10,ret+=ch-'0',ch=getchar();
    31     ret=f?-ret:ret;
    32 }
    33 int fa[100010],bo[100010],n,m; 
    34 int find(int x){return x==fa[x]?x:fa[x]=find(fa[x]);}
    35 int CSC()
    36 {
    37     inin(n),inin(m);
    38     re(i,1,n)fa[i]=i;
    39     re(i,1,m)
    40     {
    41         int x,y;
    42         inin(x),inin(y);
    43         int q=find(x),w=find(y);
    44         if(q==w)bo[q]=1;
    45         else fa[q]=w,bo[w]=bo[q]+bo[w];
    46     }
    47     re(i,1,n)if(!bo[find(i)]){printf("NIE");return 0;}
    48     printf("TAK");
    49     return 0;
    50 }
  • 相关阅读:
    中间件的应用
    报表和日志
    Cookie和Session
    表单的应用
    静态资源和Ajax请求
    导入导出EXEC
    DATEDIFF() 函数返回两个日期之间的时间
    解决echarts柱形图X轴标题显示不全的问题
    Sqlserver 游标 慢
    sql语句根据日期查询,本周,本月,本年,今日相关统计
  • 原文地址:https://www.cnblogs.com/HugeGun/p/5182252.html
Copyright © 2011-2022 走看看