hdu4318 最短路变形

和hdu有一题差不多。给的是损失比,1-c%就是保存了多少,找出最大的保存率即可。

#include<stdio.h> 
#include<iostream>  
#include<string.h>
#include<queue>  
using namespace std;  
#define inf 99999999 
#define maxn 50010 
#define maxm maxn*51  
int n,e,head[maxn],pre[maxm],nex[maxm];  
double cost[maxm],dis[maxn];  
bool vis[maxn];  
queue<int> q;  
void add(int u,int v,double c)  
{  
    pre[e]=v;
    nex[e]=head[u];
    cost[e]=c;
    head[u]=e++;  
}  
double spfa(int st,int end)  
{  
    memset(dis,0,sizeof(dis));  
    dis[st]=1;  
    q.push(st);  
    while(!q.empty())  
    {  
        int u=q.front();  
        vis[u]=0;  
        q.pop();  
        for(int i=head[u];i!=-1;i=nex[i])  
            if(dis[pre[i]]<dis[u]*(1-cost[i]))  
            {  
                dis[pre[i]]=dis[u]*(1-cost[i]);  
                if(!vis[pre[i]])  
                {  
                    q.push(pre[i]);  
                    vis[pre[i]]=1;  
                }  
            }  
    }  
    return dis[end];  
}  
int main()  
{  
    while(scanf("%d",&n)!=EOF)  
    {  
        e=0;  
        memset(head,-1,sizeof(head));  
        for(int i=1;i<=n;i++)  
        {  
            int m;  
            scanf("%d",&m);  
            for(int j=0;j<m;j++)  
            {  
                int u,c;  
                scanf("%d%d",&u,&c);  
                    add(i,u,c*1.0/100);  
            }  
        }  
        int st,end,tot;  
        scanf("%d%d%d",&st,&end,&tot);  
        double px=spfa(st,end);  
        if(px==0)  
            printf("IMPOSSIBLE!\n");  
        else  
            printf("%.2f\n",(1-px)*tot);  
  
    }   
    return 0;  
}  

 

转载于:https://www.cnblogs.com/sweat123/p/4749670.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值