zoukankan      html  css  js  c++  java
  • poj 2240 Arbitrage (最短路径)

    Arbitrage
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 13800   Accepted: 5815

    Description

    Arbitrage is the use of discrepancies in currency exchange rates to transform one unit of a currency into more than one unit of the same currency. For example, suppose that 1 US Dollar buys 0.5 British pound, 1 British pound buys 10.0 French francs, and 1 French franc buys 0.21 US dollar. Then, by converting currencies, a clever trader can start with 1 US dollar and buy 0.5 * 10.0 * 0.21 = 1.05 US dollars, making a profit of 5 percent. 

    Your job is to write a program that takes a list of currency exchange rates as input and then determines whether arbitrage is possible or not. 

    Input

    The input will contain one or more test cases. Om the first line of each test case there is an integer n (1<=n<=30), representing the number of different currencies. The next n lines each contain the name of one currency. Within a name no spaces will appear. The next line contains one integer m, representing the length of the table to follow. The last m lines each contain the name ci of a source currency, a real number rij which represents the exchange rate from ci to cj and a name cj of the destination currency. Exchanges which do not appear in the table are impossible. 
    Test cases are separated from each other by a blank line. Input is terminated by a value of zero (0) for n.

    Output

    For each test case, print one line telling whether arbitrage is possible or not in the format "Case case: Yes" respectively "Case case: No".

    Sample Input

    3
    USDollar
    BritishPound
    FrenchFranc
    3
    USDollar 0.5 BritishPound
    BritishPound 10.0 FrenchFranc
    FrenchFranc 0.21 USDollar
    
    3
    USDollar
    BritishPound
    FrenchFranc
    6
    USDollar 0.5 BritishPound
    USDollar 4.9 FrenchFranc
    BritishPound 10.0 FrenchFranc
    BritishPound 1.99 USDollar
    FrenchFranc 0.09 BritishPound
    FrenchFranc 0.19 USDollar
    
    0
    

    Sample Output

    Case 1: Yes
    Case 2: No
    

    Source

     1 //766 MS    772 KB    GNU C++
     2 /*
     3 
     4     题意:
     5         给出一个图,n个点,m条边,每条边有一个权值,求是否存在一条回路,使边的权值积大于1
     6         
     7     最短路径:
     8         floyd小变异。数据比较小,直接用floyd遍历一遍,然后判断是否存在可行解 
     9  
    10 */
    11 #include<iostream>
    12 #include<map>
    13 #include<string>
    14 #include<stdio.h>
    15 using namespace std;
    16 double g[50][50];
    17 int n,m;
    18 void floyd()
    19 {
    20     for(int k=1;k<=n;k++)
    21         for(int i=1;i<=n;i++)
    22             for(int j=1;j<=n;j++)
    23                 if(g[i][k]!=-1 && g[k][j]!=-1)
    24                     if(g[i][j]==-1 || g[i][k]*g[k][j]>g[i][j])
    25                         g[i][j]=g[i][k]*g[k][j];
    26     int flag=0;
    27     for(int i=1;i<=n;i++){
    28         //printf("%lf
    ",g[i][i]);
    29         if(g[i][i]>1.0) 
    30             flag=1;
    31     }
    32     if(flag) puts("Yes");
    33     else puts("No");
    34 } 
    35 int main(void)
    36 {
    37     string a,b;
    38     double c;
    39     int k=1;
    40     while(cin>>n,n)
    41     {
    42         for(int i=0;i<=n;i++)
    43             for(int j=0;j<=n;j++)
    44                 g[i][j]=-1;
    45         map<string,int>M;
    46         for(int i=1;i<=n;i++){
    47             cin>>a;
    48             M[a]=i;
    49         }
    50         scanf("%d",&m);
    51         for(int i=0;i<m;i++){
    52             cin>>a>>c>>b;
    53             g[M[a]][M[b]]=c;
    54         }
    55         printf("Case %d: ",k++);
    56         floyd();
    57     }
    58     return 0;
    59 }
  • 相关阅读:
    最优Django环境配置
    关于django migrations的使用
    js判断移动端是否安装某款app的多种方法
    Django升级1.9.6出现的中文本地化bug
    bootstrap响应式设计简单实践。
    Django单元测试简明实践
    Vue列表渲染
    vue 使用lib-flexable,px2rem 进行移动端适配 但是引入的第三方UI组件 vux 的样式缩小,解决方案
    Vue事件处理
    Vue表单输入绑定
  • 原文地址:https://www.cnblogs.com/GO-NO-1/p/3438790.html
Copyright © 2011-2022 走看看