• ZOJ 1655 FZU 1125 Transport Goods


    迪杰斯特拉最短路径。

    1.every city must wait till all the goods arrive, and then transport the arriving goods together with its own goods to the next city.  这个条件貌似可以忽略掉。

    2.One city can only transport the goods to one city.  这个条件貌似也可以忽略掉,是一定的。

    例如:A物品和B物品在不同的城市,他们都往X城市运输,然而X城市到首都的最少损失的路必定只有一条的,所以2条件可以忽略。至于1条件,等和不等好像也没什么区别...... = =!

    综上所述:就是每个物品只管自己运输,算最短路,每条路的权值就是比例,算出每个城市到首都损耗最少的路即可。

    #include<cstdio>
    #include<cstring>
    #include<cmath>
    #include<algorithm>
    using namespace std;
    const int maxn = 105;
    double weight[maxn], ratio[maxn][maxn], e[maxn];
    int s[maxn];
    int main()
    {
        int n, m, i, j, u, v, ii;
        double cc;
        while (~scanf("%d%d", &n, &m))
        {
            memset(s, 0, sizeof(s));
            memset(ratio, 0, sizeof(ratio));
            for (i = 1; i <= n - 1; i++) scanf("%lf", &weight[i]);
            for (i = 1; i <= m; i++)
            {
                scanf("%d%d%lf", &u, &v, &cc);
                cc = 1 - cc;
                if (cc > ratio[u][v])
                {
                    ratio[u][v] = cc;
                    ratio[v][u] = cc;
                }
            }
            for (i = 1; i <= n; i++) e[i] = ratio[n][i];
            e[n] = 1; s[n] = 1;
            for (ii = 1; ii < n; ii++)
            {
                double  maxn = -1;
                int flag = 0, x;
                for (i = 1; i <= n; i++)
                {
                    if (!s[i] && (maxn<0 || maxn<e[i]))
                    {
                        flag = 1;
                        maxn = e[i];
                        x = i;
                    }
                }
                if (!flag) break;
                s[x] = 1;
                for (i = 1; i <= n; i++)
                if (!s[i] && ratio[x][i] != 0 && e[x] * ratio[x][i] > e[i])
                    e[i] = e[x] * ratio[x][i];            
            }
            double anss = 0;
            for (i = 1; i < n; i++) anss = anss + e[i] * weight[i];    
            printf("%.2f
    ", anss);
        }
        return 0;
    }
  • 相关阅读:
    asp.net下的网页编辑器
    在Visual C#中访问不同数据库
    VS2008 sp1中文版下载地址
    常用封装链接数据库类
    常用封装日志类
    动态构建OrderBy的Lambda表达式
    用户管理抽象类
    存储过程导出数据库数据
    应用程序xml 配置文件抽象基类
    ini文件示例说明
  • 原文地址:https://www.cnblogs.com/zufezzt/p/4498089.html
Copyright © 2020-2023  润新知