其他分享
首页 > 其他分享> > 一个题的N种解法

一个题的N种解法

作者:互联网

营救

这个题的大概意思:n个小区,m条路,每个路有一个拥挤值,从s到t,使拥挤值最大值的最小是多少

第一种解法

堆优化版dijkstra
将判断条件改一下就行

点击查看代码
#include <iostream>
#include <queue>
using namespace std;
const int N = 1e4+10,M = 4e4+10;
int h[N],ne[M],e[M],w[M],idx,n,m,s,t,dist[N],ans=0;
bool st[N];
void add(int a,int b,int c)
{
    e[idx]=b;ne[idx]=h[a];w[idx]=c;h[a]=idx++;
}
struct node
{
    int d,id;
    friend bool operator < (const node &a,const node &b)
    {
        return a.d>b.d;
    }
};
void dijkstra()
{
    for (int i=1;i<=n;i++)  dist[i]=0x3f3f3f3f;
    priority_queue<node>q;
    q.push({0,s});
    dist[s]=0;
    while (q.size())
    {
        auto t=q.top(); q.pop();
        if (st[t.id])   continue;
        st[t.id]=1;
        for (int i=h[t.id];i!=-1;i=ne[i])
        {
            int j=e[i];int k=max(dist[t.id],w[i]);
            if (dist[j]>k)
            {
                dist[j]=k;
                q.push({dist[j],j});
            }
        }
    }
}
int main()
{
    cin>>n>>m>>s>>t;
    for (int i=1;i<=n;i++)  h[i]=-1;
    for (int i=0;i<m;i++)
    {
        int a,b,c;
        scanf("%d%d%d",&a,&b,&c);
        add(a,b,c);
        add(b,a,c);
    }
    dijkstra();
    cout<<dist[t];
}

标签:dist,idx,一个,ne,int,const,id,解法
来源: https://www.cnblogs.com/Seaside-G/p/16475461.html