标签:sample str pos names getc read problem output search
【数据范围】
对于30%的数据,保证N < =1000
对于100%的数据,保证N < =1000000
/* 将每个装备看做一条边,将装备的属性看做点。将每个装备的两个属性连接成一个集合,依次连成一条链。 最后用并查集处理找出根最大的链,输出。。。 注意每次并查集合并时要把属性大的作为根。 */ #include<cstdio> #include<algorithm> #define set(x) freopen(#x".in","r",stdin);freopen(#x".out","w",stdout); using namespace std; const int N=1e4+5; int n,fa[N];bool vis[N]; 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 find(int x){ return fa[x]==x?x:fa[x]=find(fa[x]); } int main(){ set(game); for(int i=1;i<=10000;i++) fa[i]=i; n=read(); for(int i=1,x,y;i<=n;i++){ x=read();y=read(); x=find(x);y=find(y); if(x==y) vis[x]=1; if(x<y) swap(x,y); fa[y]=x; } for(int i=1;i<=10000;i++){ if(find(i)==i&&!vis[i]){ printf("%d",i-1);return 0; } } puts("10000"); return 0; } /* orz zjk 乱搞100分: b[]为第一优先 a[],num[b[]]为第二优先 #include<cstdio> #include<iostream> #define set(x) freopen(#x".in","r",stdin);freopen(#x".out","w",stdout); using namespace std; const int N=1e6+5; int n,f,a[N],b[N],num[N];bool vis[N]; 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 main(){ set(game); n=read(); for(int i=1;i<=n;i++){ a[i]=read();b[i]=read(); if(a[i]>b[i]) swap(a[i],b[i]); num[a[i]]++;num[b[i]]++; } for(int i=1,pos;i<=10000;i++){ pos=0; for(int j=1;j<=n;j++){ if(!vis[j]&&b[j]==i){ pos=j;break; } } if(pos){ vis[pos]=1; num[a[pos]]--;num[b[pos]]--; continue; } pos=0; for(int j=1;j<=n;j++){ if(!vis[j]&&a[j]==i&&num[b[j]]>num[b[pos]]){ pos=j; } } if(pos){ vis[pos]=1; num[a[pos]]--;num[b[pos]]--; } else{ f=1; printf("%d\n",i-1); break; } } if(!f) puts("10000"); return 0; } /* in: 6 1 3 2 4 3 4 4 5 4 6 5 6 out: 6 */
标签:sample str pos names getc read problem output search
原文地址:http://www.cnblogs.com/shenben/p/6623649.html