zoukankan      html  css  js  c++  java
  • P2966 [USACO09DEC]牛收费路径Cow Toll Paths

    P2966 [USACO09DEC]牛收费路径Cow Toll Paths

    题目描述

    Like everyone else, FJ is always thinking up ways to increase his revenue. To this end, he has set up a series of tolls that the cows will pay when they traverse the cowpaths throughout the farm.

    The cows move from any of the N (1 <= N <= 250) pastures conveniently numbered 1..N to any other pasture over a set of M (1 <= M <= 10,000) bidirectional cowpaths that connect pairs of different pastures A_j and B_j (1 <= A_j <= N; 1 <= B_j <= N). FJ has assigned a toll L_j (1 <= L_j <= 100,000) to the path connecting pastures A_j and B_j.

    While there may be multiple cowpaths connecting the same pair of pastures, a cowpath will never connect a pasture to itself. Best of all, a cow can always move from any one pasture to any other pasture by following some sequence of cowpaths.

    In an act that can only be described as greedy, FJ has also assigned a toll C_i (1 <= C_i <= 100,000) to every pasture. The cost of moving from one pasture to some different pasture is the sum of the tolls for each of the cowpaths that were traversed plus a *single additional toll* that is the maximum of all the pasture tolls encountered along the way, including the initial and destination pastures.

    The patient cows wish to investigate their options. They want you to write a program that accepts K (1 <= K <= 10,000) queries and outputs the minimum cost of trip specified by each query. Query i is a pair of numbers s_i and t_i (1 <= s_i <= N; 1 <= t_i <= N; s_i != t_i) specifying a starting and ending pasture.

    Consider this example diagram with five pastures:

    The 'edge toll' for the path from pasture 1 to pasture 2 is 3. Pasture 2's 'node toll' is 5.

    To travel from pasture 1 to pasture 4, traverse pastures 1 to 3 to 5 to 4. This incurs an edge toll of 2+1+1=4 and a node toll of 4 (since pasture 5's toll is greatest), for a total cost of 4+4=8.

    The best way to travel from pasture 2 to pasture 3 is to traverse pastures 2 to 5 to 3. This incurs an edge toll of 3+1=4 and a node toll of 5, for a total cost of 4+5=9.

    跟所有人一样,农夫约翰以着宁教我负天下牛,休叫天下牛负我的伟大精神,日日夜夜苦思生 财之道。为了发财,他设置了一系列的规章制度,使得任何一只奶牛在农场中的道路行走,都 要向农夫约翰上交过路费。 农场中由N(1 <= N <= 250)片草地(标号为1到N),并且有M(1 <= M <= 10000)条 双向道路连接草地A_j和B_j(1 <= A_j <= N; 1 <= B_j <= N)。

    奶牛们从任意一片草 地出发可以抵达任意一片的草地。FJ已经在连接A_j和B_j的双向道路上设置一个过路费L_j (1 <= L_j <= 100,000)。 可能有多条道路连接相同的两片草地,但是不存在一条道路连接一片草地和这片草地本身。最 值得庆幸的是,奶牛从任意一篇草地出发,经过一系列的路径,总是可以抵达其它的任意一片 草地。 除了贪得无厌,叫兽都不知道该说什么好。

    FJ竟然在每片草地上面也设置了一个过路费C_i (1 <= C_i <= 100000)。从一片草地到另外一片草地的费用,是经过的所有道路的过路 费之和,加上经过的所有的草地(包括起点和终点)的过路费的最大值。 任劳任怨的牛们希望去调查一下她们应该选择那一条路径。

    她们要你写一个程序,接受K(1 <= K <= 10,000)个问题并且输出每个询问对应的最小花费。第i个问题包含两个数字s_i 和t_i(1 <= s_i <= N; 1 <= t_i <= N; s_i != t_i),表示起点和终点的草地。

    输入输出格式

    输入格式:
    • Line 1: Three space separated integers: N, M, and K

    • Lines 2..N+1: Line i+1 contains a single integer: C_i

    • Lines N+2..N+M+1: Line j+N+1 contains three space separated

    integers: A_j, B_j, and L_j

    • Lines N+M+2..N+M+K+1: Line i+N+M+1 specifies query i using two space-separated integers: s_i and t_i
    输出格式:
    • Lines 1..K: Line i contains a single integer which is the lowest cost of any route from s_i to t_i

    输入输出样例

    输入样例#1:
    5 7 2 
    2 
    5 
    3 
    3 
    4 
    1 2 3 
    1 3 2 
    2 5 3 
    5 3 1 
    5 4 1 
    2 4 3 
    3 4 4 
    1 4 
    2 3 
    
    输出样例#1:
    8 
    9 

    floyd中要先枚举中间点k,我们可以按照点权从小到大排序,在计算最大点权的时候只要考虑i,j,k三者中点权的最大值即可。

    通过排序使得最大值变成当前点的点权。

     1 #include<cstdio>
     2 #include<cstring>
     3 #include<algorithm>
     4 using namespace std;
     5 const int MAXN = 260;
     6 struct node{
     7     int v,id;
     8     bool operator < (const node &a) const
     9     {
    10         return v < a.v;
    11     }
    12 }c[MAXN];
    13 int w[MAXN][MAXN];
    14 int d[MAXN][MAXN];
    15 int t[MAXN];
    16 int n,m,q;
    17 
    18 void floyd()
    19 {
    20     for (int a=1; a<=n; ++a)
    21     {
    22         int k = c[a].id;
    23         for (int i=1; i<=n; ++i)
    24             for (int j=1; j<=n; ++j)
    25             {
    26                 d[i][j] = d[j][i] = min(d[i][k]+d[k][j],d[i][j]);
    27                 w[i][j] = w[j][i] = min(w[i][j],d[i][j]+max(c[a].v,max(t[i],t[j])));
    28             }
    29     }
    30 }
    31 int main()
    32 {
    33     memset(w,0x3f,sizeof(w));
    34     scanf("%d%d%d",&n,&m,&q);
    35     for (int i=1; i<=n; ++i)
    36     {
    37         scanf("%d",&c[i].v);
    38         c[i].id = i;
    39     }
    40     for (int i=1; i<=n; i++)
    41         for (int j=1; j<=n; j++)
    42             if (i!=j) d[i][j] = d[j][i] = w[i][j] = w[j][i] = 1e9;
    43             else w[i][j] = w[j][i] = c[i].v;
    44     sort(c+1,c+n+1);
    45     for (int i=1; i<=n; i++)
    46         t[c[i].id] = c[i].v;
    47     for (int x,y,z,i=1; i<=m; ++i)
    48     {
    49         scanf("%d%d%d",&x,&y,&z);
    50         if (z<d[x][y])
    51             d[x][y]=d[y][x]=z;
    52     }
    53     floyd();
    54     while (q--)
    55     {
    56         int x,y;
    57         scanf("%d%d",&x,&y);
    58         printf("%d
    ",w[x][y]);
    59     }
    60     return 0;
    61 }
  • 相关阅读:
    Linux 学习 step by step (2)
    公共建筑能耗监测平台的GPRS通讯服务器的开发方法分享
    幸福框架:可扩展的、动态的、万能的 编号生成器
    C++ Data Member内存布局
    .NET程序集强命名删除与再签名技术 源代码剖析
    hdu 2191(多重背包)
    五种情况下会刷新控件状态(刷新所有子FWinControls的显示)——从DFM读取数据时、新增加子控件时、重新创建当前控件的句柄时、设置父控件时、显示状态被改变时
    终于懂了:Delphi消息的Result域出现的原因——要代替回调函数的返回值!(MakeObjectInstance不会帮助处理(接收)消息回调函数的返回值)
    Firemonkey实现Mac OS程序中内嵌浏览器的功能(自己动手翻译,调用苹果提供的webkit框架)
    感悟:市场经济看得就是主观能动性,有则富贵可及,无则无限趋于零
  • 原文地址:https://www.cnblogs.com/mjtcn/p/7061781.html
Copyright © 2011-2022 走看看