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

【BZOJ】1529 [POI2005]ska Piggy banks

时间:2016-09-23 20:06:01      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

【算法】(强连通分量)并查集

【题解】

1.用tarjan计算强连通分量并缩点,在新图中找入度为0的点的个数就是答案。

但是,会爆内存(题目内存限制64MB)。

2.用并查集,最后从1到n统计fa[i]==i的数量即是答案。

(tarjan)

技术分享
#include<cstdio>
#include<algorithm>
using namespace std;
const int maxn=1000010;
struct edge{int u,v,from;}e[maxn];
int n,tot,top,mark,color,col[maxn],dfn[maxn],low[maxn],s[maxn],lack[maxn],in[maxn],first[maxn];
void insert(int u,int v)
{tot++;e[tot].u=u;e[tot].v=v;e[tot].from=first[u];first[u]=tot;}
void tarjan(int x)
{
    dfn[x]=low[x]=++mark;
    s[++top]=x;lack[x]=top;
    for(int i=first[x];i;i=e[i].from)
     {
         int y=e[i].v;
         if(!dfn[y])
          {
              tarjan(y);
              low[x]=min(low[x],low[y]);
          }
         else if(!col[y])low[x]=min(low[x],dfn[y]);
     }
    if(dfn[x]==low[x])
     {
         color++;
         for(int i=lack[x];i<=top;i++)col[s[i]]=color;
         top=lack[x]-1;
     }
}
int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
     {
         int u;
         scanf("%d",&u);
         insert(u,i);
     }
    for(int i=1;i<=n;i++)if(!dfn[i])tarjan(i);
    for(int i=1;i<=tot;i++)
     if(col[e[i].u]!=col[e[i].v])in[col[e[i].v]]++;
    int ans=0;
    for(int i=1;i<=color;i++)if(in[i]==0)ans++;
    printf("%d",ans);
    return 0;
}
View Code

(并查集)

技术分享
#include<cstdio>
#include<algorithm>
using namespace std;
const int maxn=1000010;
int f[maxn],n;
int getfa(int x)
{return f[x]==x?x:f[x]=getfa(f[x]);}
int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;i++)f[i]=i;
    for(int i=1;i<=n;i++)
     {
         int u;
        scanf("%d",&u);
         if(getfa(i)!=getfa(u))f[f[i]]=f[u];
     }
    int ans=0;
    for(int i=1;i<=n;i++)if(f[i]==i)ans++;
    printf("%d",ans);
    return 0;
}
View Code

并查集记得初始化fa[i]=i。

【BZOJ】1529 [POI2005]ska Piggy banks

标签:

原文地址:http://www.cnblogs.com/onioncyc/p/5901431.html

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