码迷,mamicode.com
首页 > 其他好文 > 详细

bzoj 1006: [HNOI2008]神奇的国度【弦图+LesBFS】

时间:2018-03-03 22:31:02      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:AC   printf   void   ons   ios   论文   iostream   main   cpp   

参考论文:https://wenku.baidu.com/view/6f9f2223dd36a32d73758126.html
参考代码:http://hzwer.com/3500.html
虽然会写了但是我还是不知道弦图是个什么玩意

#include<iostream>
#include<cstdio>
using namespace std;
const int N=20005,M=2000005;
int n,m,h[N],cnt,d[N],q[N],c[N],ha[N],ans;
bool v[N];
struct qwe
{
    int ne,to,va;
}e[M];
int read()
{
    int r=0,f=1;
    char p=getchar();
    while(p>‘9‘||p<‘0‘)
    {
        if(p==‘-‘)
            f=-1;
        p=getchar();
    }
    while(p>=‘0‘&&p<=‘9‘)
    {
        r=r*10+p-48;
        p=getchar();
    }
    return r*f;
}
void add(int u,int v)
{
    cnt++;
    e[cnt].ne=h[u];
    e[cnt].to=v;
    h[u]=cnt;
}
int main()
{
    n=read(),m=read();
    for(int i=1;i<=m;i++)
    {
        int x=read(),y=read();
        add(x,y);
        add(y,x);
    }
    for(int i=n;i>=1;i--)
    {
        int t=0;
        for(int j=1;j<=n;j++)
            if(!v[j]&&d[j]>=d[t])
                t=j;
        v[t]=1,q[i]=t;
        for(int j=h[t];j;j=e[j].ne)
            d[e[j].to]++;
    }
    for(int i=n;i>=1;i--)
    {
        int t=q[i];
        for(int j=h[t];j;j=e[j].ne)
            ha[c[e[j].to]]=i;
        int j;
        for(j=1;;j++)
            if(ha[j]!=i)
                break;
        c[t]=j;
        if(j>ans)
            ans=j;
    }
    printf("%d\n",ans);
    return 0;
}

bzoj 1006: [HNOI2008]神奇的国度【弦图+LesBFS】

标签:AC   printf   void   ons   ios   论文   iostream   main   cpp   

原文地址:https://www.cnblogs.com/lokiii/p/8503171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!