bzoj 1006: [HNOI2008]??????????????? -- ???????????????????????????
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj 1006: [HNOI2008]??????????????? -- ???????????????????????????相关的知识,希望对你有一定的参考价值。
??????????????? input air str long ?????? ?????? include iostream
1006: [HNOI2008]???????????????
Time Limit: 20 Sec Memory Limit: 162 MBDescription
??????K????????????????????????????????????,???????????????????????????????????????.????????????????????????:???AB????????????,BC????????????,CA
????????????,??????????????????.????????????????????????,K?????????????????????,???????????????????????????.??????N?????????,??????N?????? A1A2
...An???????????????N???????????????:(A1A2)(A2A3)...(AnA1),???????????????????????????.?????????????????????ABCD????????? AB,BC,C
D,DA????????????,???AC,BD?????????.???????????????,?????????????????????????????????????????????????????????????????????????????????????????????
??????????????????????????????
Input
???????????????????????????N???M???1<=N<=10000,1<=M<=1000000.?????????N?????????M???????????????. ?????????M????????????????????????
???
Output
???????????????????????????????????????????????????
Sample Input
1 2
1 4
2 4
2 3
3 4
Sample Output
HINT
??????????????????(1,3)(2)(4)
Source
????????????????????????cdq?????????????????????
????????????????????????????????????????????????????????????????????????????????????O???n+m???//?????????????????????????????????????????????
#include<map> #include<cmath> #include<queue> #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> using namespace std; #define inf 1000000007 #define ll long long #define M 2000010 #define N 10010 inline int rd() { 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 lj[N],fro[M],to[M],cnt; inline void add(int a,int b){fro[++cnt]=lj[a];to[cnt]=b;lj[a]=cnt;} int num[N],ji[N],col[N],hs[N]; priority_queue<pair<int,int> >q; #define mp make_pair int n,m,p[N],mx; bool vs[N]; int main() { n=rd();m=rd(); for(int i=1,x,y;i<=m;i++) { x=rd();y=rd(); add(x,y);add(y,x); }for(int i=1;i<=n;i++) q.push(mp(0,i)); for(int i=n,x;i;i--) { while(vs[q.top().second]) q.pop(); x=q.top().second;q.pop(); vs[x]=1;num[i]=x; for(int j=lj[x];j;j=fro[j]) if(!vs[to[j]]) q.push(mp(++ji[to[j]],to[j])); } for(int i=n,x;i;i--) { x=num[i]; for(int j=lj[x];j;j=fro[j]) if(col[to[j]]) hs[col[to[j]]]=i; for(int j=1;j<=mx;j++) if(hs[j]!=i){col[x]=j;break;} if(!col[x]) col[x]=++mx; } printf("%d\n",mx); return 0; }
以上是关于bzoj 1006: [HNOI2008]??????????????? -- ???????????????????????????的主要内容,如果未能解决你的问题,请参考以下文章