其他分享
首页 > 其他分享> > 1127. 香甜的黄油【最短路】

1127. 香甜的黄油【最短路】

作者:互联网

在这里插入图片描述

https://www.acwing.com/problem/content/description/1129/
对于每一个Dijkstra(),然后算总花费中,最小的总花费即可。

#include<bits/stdc++.h>
using namespace std;
typedef pair<int,int> PII;
typedef long long int LL;
const int N=1e3*4+10;
int dist[N],st[N];
int h[N],e[N],w[N],ne[N],idx;
LL n,m,t,cow[N],ans=1e9;
void add(int a,int b,int c)
{
    e[idx]=b,w[idx]=c,ne[idx]=h[a],h[a]=idx++;
}
void Dijkstra(int startx)
{
    memset(dist,0x3f,sizeof dist);
    memset(st,0,sizeof st);
    dist[startx]=0;
    priority_queue<PII,vector<PII>,greater<PII>> heap; heap.push({0,startx});
    while(heap.size())
    {
        auto t=heap.top(); heap.pop();
        int u=t.second;
        if(st[u]) continue;
        st[u]=1;
        for(int i=h[u];i!=-1;i=ne[i])
        {
            int j=e[i];
            if(dist[j]>dist[u]+w[i])
            {
                dist[j]=dist[u]+w[i];
                heap.push({dist[j],j});
            }
        }
    }
}
int main(void)
{
    memset(h,-1,sizeof h);
    scanf("%lld%lld%lld",&t,&n,&m);
    for(int i=1;i<=t;i++) scanf("%lld",&cow[i]);
    while(m--)
    {
        int a,b,c; scanf("%d%d%d",&a,&b,&c);
       add(a,b,c),add(b,a,c);
    }
    for(int i=1;i<=n;i++)
    {
        Dijkstra(i);
        LL temp=0;
        for(int j=1;j<=t;j++) temp+=dist[cow[j]];
        if(temp>=0x3f3f3f3f) continue;
        ans=min(ans,temp);
    }
    printf("%lld",ans);
    return 0;
}

标签:dist,idx,int,短路,ans,1127,heap,黄油,st
来源: https://blog.csdn.net/bettle_king/article/details/120738800