CF427C Checkposts(tarjan求强连通)

每个强连通分量记最小值,及最小值的个数。

#include <bits/stdc++.h>
using namespace std;
#define N 100010
#define M 300010
#define inf 0x3f3f3f3f
#define ll long long
const int mod=1e9+7;
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 n,m,w[N],h[N],num=0,dfn[N],low[N],dfnum=0,bel[N],scc=0,sw[N],size[N];
ll ans1=0,ans2=1;
bool inq[N];
stack<int>q;
struct edge{
    int to,next;
}data[M];
void tarjan(int x){
    dfn[x]=low[x]=++dfnum;q.push(x);inq[x]=1;
    for(int i=h[x];i;i=data[i].next){
        int y=data[i].to;
        if(!dfn[y]){tarjan(y);low[x]=min(low[x],low[y]);}
        else if(inq[y]) low[x]=min(low[x],dfn[y]);
    }
    if(dfn[x]==low[x]){
        ++scc;sw[scc]=inf;while(1){
            int y=q.top();q.pop();inq[y]=0;bel[y]=scc;
            if(w[y]==sw[scc]) size[scc]++;
            if(w[y]<sw[scc]){sw[scc]=w[y];size[scc]=1;}
            if(y==x) break;
        }
    }
}
int main(){
//  freopen("a.in","r",stdin);
    n=read();for(int i=1;i<=n;++i) w[i]=read();m=read();
    while(m--){
        int x=read(),y=read();data[++num].to=y;data[num].next=h[x];h[x]=num;
    }
    for(int i=1;i<=n;++i) if(!dfn[i]) tarjan(i);
    for(int i=1;i<=scc;++i) ans1+=sw[i],ans2=ans2*size[i]%mod;
    printf("%I64d %I64d\n",ans1,ans2);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值