zoukankan      html  css  js  c++  java
  • HDOJ 1690

    Bus System

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 5709    Accepted Submission(s): 1449

    Problem Description
    Because of the huge population of China, public transportation is very important. Bus is an important transportation method in traditional public transportation system. And it’s still playing an important role even now. The bus system of City X is quite strange. Unlike other city’s system, the cost of ticket is calculated based on the distance between the two stations. Here is a list which describes the relationship between the distance and the cost.
    Your neighbor is a person who is a really miser. He asked you to help him to calculate the minimum cost between the two stations he listed. Can you solve this problem for him? To simplify this problem, you can assume that all the stations are located on a straight line. We use x-coordinates to describe the stations’ positions.
     
    Input
    The input consists of several test cases. There is a single number above all, the number of cases. There are no more than 20 cases. Each case contains eight integers on the first line, which are L1, L2, L3, L4, C1, C2, C3, C4, each number is non-negative and not larger than 1,000,000,000. You can also assume that L1<=L2<=L3<=L4. Two integers, n and m, are given next, representing the number of the stations and questions. Each of the next n lines contains one integer, representing the x-coordinate of the ith station. Each of the next m lines contains two integers, representing the start point and the destination. In all of the questions, the start point will be different from the destination. For each case,2<=N<=100,0<=M<=500, each x-coordinate is between -1,000,000,000 and 1,000,000,000, and no two x-coordinates will have the same value.
     
    Output
    For each question, if the two stations are attainable, print the minimum cost between them. Otherwise, print “Station X and station Y are not attainable.” Use the format in the sample.
     
    Sample Input
    2 1 2 3 4 1 3 5 7 4 2 1 2 3 4 1 4 4 1 1 2 3 4 1 3 5 7 4 1 1 2 3 10 1 4
     
    Sample Output
    Case 1: The minimum cost between station 1 and station 4 is 3. The minimum cost between station 4 and station 1 is 3. Case 2: Station 1 and station 4 are not attainable.
     
     
    核心算法: 顶点队的最短路径,直接用floyd暴力算法;PS:注意要用__int64;
     
    AC代码:
     1 #include<stdio.h>
     2 #include<string.h>
     3 #include<math.h>
     4 __int64 g[101][101];
     5 __int64 L1,L2,L3,L4;
     6 __int64 c1,c2,c3,c4;
     7 void floyd(__int64 n)
     8 {
     9     for(__int64 k=1;k<=n;k++)
    10     {
    11         for(__int64 i=1;i<=n;i++)
    12         {
    13             for(__int64 j=1;j<=n;j++)
    14             {
    15                 if(g[i][k]+g[k][j]<g[i][j])
    16                 {
    17                     g[i][j]=g[i][k]+g[k][j];
    18                 }
    19             }
    20         }
    21     }
    22 }
    23 __int64 func(__int64 x)
    24 {
    25     if(x>0&&x<=L1)return c1;
    26     else if(x>L1&&x<=L2)return c2;
    27     else if(x>L2&&x<=L3)return c3;
    28     else if(x>L3&&x<=L4)return c4;
    29     else return 123456789123;
    30 }
    31 int main()
    32 {
    33     __int64 Q,t,i,j;
    34     scanf("%I64d",&Q);
    35     __int64 poi[101];
    36     for(t=1;t<=Q;t++)
    37     {
    38         memset(poi,0,sizeof(poi));
    39         scanf("%I64d %I64d %I64d %I64d",&L1,&L2,&L3,&L4);
    40         scanf("%I64d %I64d %I64d %I64d",&c1,&c2,&c3,&c4);
    41         __int64 n,m,x;
    42         scanf("%I64d %I64d",&n,&m);
    43         for(i=1;i<=n;i++)
    44             scanf("%I64d",&poi[i]);
    45         for(i=1;i<=n;i++)
    46         {
    47             for(j=1;j<=n;j++)
    48             {
    49                 __int64 len=(poi[j]-poi[i]);
    50                 if(len<0)
    51                     len=-1*len;
    52                 g[j][i]=g[i][j]=func(len);
    53             }
    54         }
    55         floyd(n);
    56         
    57         printf("Case %I64d:
    ",t);
    58         for(i=1;i<=m;i++)
    59         {
    60             __int64 a,b;
    61             scanf("%I64d %I64d",&a,&b);
    62             if(g[a][b]==123456789123)
    63                 printf("Station %I64d and station %I64d are not attainable.
    ",a,b);
    64             else
    65                 printf("The minimum cost between station %I64d and station %I64d is %I64d.
    ",a,b,g[a][b]);
    66         }
    67     }
    68     return 0;
    69 }
    View Code
  • 相关阅读:
    python学习笔记 async and await
    python学习笔记 异步asyncio
    python学习笔记 协程
    python学记笔记 2 异步IO
    python学习笔记 可变参数关键字参数**kw相关学习
    逆波兰表达式 栈表达式计算
    Codeforces 270E Flawed Flow 网络流问题
    Codeforces 219D Choosing Capital for Treeland 2次DP
    kuangbin 带你飞 概率期望
    函数式编程思想:以函数的方式思考,第3部分
  • 原文地址:https://www.cnblogs.com/zeze/p/hdoj1690.html
Copyright © 2011-2022 走看看