bzoj1854 [Scoi2010]游戏
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj1854 [Scoi2010]游戏相关的知识,希望对你有一定的参考价值。
第一眼就想到二分图匹配
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 head[1000010],next[2000020],zhi[2000020],ed,n,pre[1000010],bo[1000010]; 34 bool find(int x,int T) 35 { 36 for(int i=head[x];i;i=next[i]) 37 if(bo[zhi[i]]!=T) 38 { 39 bo[zhi[i]]=T; 40 if(!pre[zhi[i]]||find(pre[zhi[i]],T)) 41 { 42 pre[zhi[i]]=x; 43 return 1; 44 } 45 } 46 return 0; 47 } 48 void add(int a,int b){next[++ed]=head[a],head[a]=ed,zhi[ed]=b;} 49 int CSC() 50 { 51 inin(n); 52 re(i,1,n) 53 { 54 int x;inin(x),add(x,i); 55 inin(x),add(x,i); 56 } 57 re(i,1,n+1)if(!find(i,i)) 58 { 59 printf("%d",i-1); 60 return 0; 61 } 62 cout<<n; 63 return 0; 64 }
以上是关于bzoj1854 [Scoi2010]游戏的主要内容,如果未能解决你的问题,请参考以下文章
bzoj 1854: [Scoi2010]游戏 (并查集||二分图最大匹配)