• 【luogu P2194 HXY烧情侣】 题解


    题目链接:https://www.luogu.org/problemnew/show/P2194
    第一问:缩点并且统计其强连通分量里的最小耗费。把所有强连通分量的最小耗费加起来。
    第二问:统计在每个强连通分量里与最小耗费相同的点数。乘法原理统计所有强连通分量答案。

    #include <stack>
    #include <cstdio>
    #include <cstring>
    #include <iostream>
    #include <algorithm>
    using namespace std;
    const int maxn = 300000 + 10;
    const int inf = 0x7fffffff;
    const int mod = 1e9 + 7;
    struct edge{
    	int from, to, next;
    }e[maxn<<2];
    int head[maxn], cnt;
    int n, m, ans1, ans2 = 1, dfn[maxn], low[maxn], tim, color[maxn], num, val[maxn], minpay[maxn], tot[maxn];
    bool vis[maxn];
    stack<int> s;
    void add(int u, int v)
    {
    	e[++cnt].from = u;
    	e[cnt].next = head[u];
    	e[cnt].to = v;
    	head[u] = cnt;
    }
    void tarjan(int x)
    {
    	dfn[x] = low[x] = ++tim;
    	vis[x] = 1; s.push(x);
    	for(int i = head[x]; i != -1; i = e[i].next)
    	{
    		int v = e[i].to;
    		if(!dfn[v])
    		{
    			tarjan(v);
    			low[x] = min(low[x], low[v]);
    		}
    		else if(vis[v])
    		{
    			low[x] = min(low[x], low[v]);
    		}
    	}
    	if(dfn[x] == low[x])
    	{
    		color[x] = ++num;
    		vis[x] = 0;
    		minpay[num] = min(minpay[num], val[x]);
    		while(s.top() != x)
    		{
    			color[s.top()] = num;
    			vis[s.top()] = 0;
    			minpay[num] = min(minpay[num], val[s.top()]);
    			s.pop();
    		}
    		s.pop();
    	}
    }
    int main()
    {
    	memset(head, -1, sizeof(head));
    	scanf("%d",&n);
    	for(int i = 1; i <= n; i++) minpay[i] = inf;
    	for(int i = 1; i <= n; i++) scanf("%d",&val[i]);
    	scanf("%d",&m);
    	for(int i = 1; i <= m; i++)
    	{
    		int u, v;
    		scanf("%d%d",&u,&v);
    		add(u,v);
    	}
    	for(int i = 1; i <= n; i++)
    		if(!dfn[i]) tarjan(i);
    	//for(int i = 1; i <= n; i++) cout<<minpay[i];
    	for(int i = 1; i <= num; i++) ans1 += minpay[i];
    	cout<<ans1<<" ";
    	for(int i = 1; i <= n; i++)
    	{
    		if(val[i] == minpay[color[i]])
    		tot[color[i]]++;
    	}
    	for(int i = 1; i <= num; i++) ans2 = (ans2*tot[i])%mod;
    	cout<<ans2<<endl;
    	return 0;
    }
    
  • 相关阅读:
    <img />标签 alt title
    ubuntu中rar与unrar用法详解
    vi及缩进设置
    ubuntu下读取数据库中文乱码解决
    ubuntu下phpstorm无法输入中文的解决办法
    ubuntu下mysqli_connect()显示未定义,mysqli_fetch_all()显示未定义 解决方法
    权限控制
    NULL
    ubuntu下chromium 安装flash player
    手把手教你把Vim改装成一个IDE编程环境(图文)
  • 原文地址:https://www.cnblogs.com/MisakaAzusa/p/9379671.html
Copyright © 2020-2023  润新知