4874: 筐子放球
Time Limit: 10 Sec Memory Limit: 256 MBDescription
Input
Output
Sample Input
1 2
2 3
1 3
1 2
Sample Output
1,3 号球都放在 1 号筐子,2,4 号球都放在 2 号筐子。
HINT
各位不妨考虑下,如果要求输出方案应该怎么写.
Source
好巧妙的思维题
我们可以把筐子看成点,球当边
然后求一下连通块,含奇数条边的连通块个数即为答案
#include<map> #include<cmath> #include<queue> #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> using namespace std; #define ll long long #define N 400010 inline int read() { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } int to[N],lj[N],fro[N],cnt; void add(int a,int b){fro[++cnt]=lj[a];to[cnt]=b;lj[a]=cnt;} bool vs[N]; int dfs(int x) { vs[x]=1;int tp=0; for(int i=lj[x];i;i=fro[i]) { tp++; if(!vs[to[i]]) tp+=dfs(to[i]); } return tp; } int n,m,x,y,ans; int main() { n=read();m=read(); for(int i=1;i<=n;i++) { x=read();y=read(); add(x,y);add(y,x); } int tp; for(int i=1;i<=m;i++) if(!vs[i]) { tp=dfs(i)>>1; if(tp&1) ans++; } printf("%d\n",ans); return 0; }
版权声明:本文为博主原创文章,未经博主允许不得转载。