P2194 HXY烧情侣

在这里插入图片描述
思路:纯纯阅读理解题,它这个去电影院不是沿着道路走的,也就是不需要按照图的顺序访问,是直接挑选一个 s c c scc scc去访问
那问题就很好解决了,对于一个强联通块,必须访问他们的最少的点权的点,设为 n u m [ x ] num[x] num[x].
方案数目就是 ∏ n u m [ x ] \prod num[x] num[x]
对了,它是方案数取模,其他不取模,注意

/*
I don't wanna be left behind,Distance was a friend of mine.
Catching breath in a web of lies,I've spent most of my life.
Catching my breath letting it go turning my cheek for the sake of this show
Now that you know this is my life I won't be told what's supposed to be right
Catch my breath no one can hold me back I ain't got time for that.
*/
#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e6+5;
const int INF = 1e9+7;
typedef long long ll;
typedef pair<int,int> pii;
#define all(a) (a).begin(), (a).end()
#define pb(a) push_back(a)
vector<int> G[maxn];
int dfn[maxn],low[maxn],dfs_clock=0;int scc[maxn],scc_cnt;
stack<int> S;
int mn[maxn],num[maxn];int a[maxn];
void dfs(int u){
	low[u] = dfn[u] = ++dfs_clock;
	S.push(u);
	for(auto v : G[u]){
		if(!dfn[v]){
			dfs(v);
			low[u] = min(low[u],low[v]);
		}
		else if(!scc[v]) low[u] = min(low[u],dfn[v]);//不是cross_edge而是back_edge的情况更新
	}
	if(low[u]==dfn[u]){
		scc_cnt++;
		while(true){
			int x=S.top();S.pop();
			if(a[x]<mn[scc_cnt]){
				mn[scc_cnt] = a[x];
				num[scc_cnt] = 1;
			}
			else if(a[x]==mn[scc_cnt]) num[scc_cnt]++;
			scc[x]=scc_cnt;
			if(x==u) break;
		}
	}
}
int main(){
    ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	int n;cin>>n;
	for(int i=1;i<=n;i++){
		cin>>a[i];mn[i] = INF;
	}
	int m;cin>>m;
	for(int i=1;i<=m;i++){
		int u,v;cin>>u>>v;
		G[u].pb(v);
	}
	for(int i=1;i<=n;i++){
		if(!dfn[i]) dfs(i);
	}
	ll ans = 1,sum=0;ll mod = INF;
	for(int i=1;i<=scc_cnt;i++) ans = ans*num[i]%mod,sum = (sum+mn[i]);
	cout<<sum<<" "<<ans;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

minato_yukina

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值