Arbitrage(最短路问题)

I – Arbitrage

Time Limit:1000MSMemory Limit:65536KB64bit IO Format:%I64d & %I64u

Submit

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

3USDollarBritishPoundFrenchFranc3USDollar 0.5 BritishPoundBritishPound 10.0 FrenchFrancFrenchFranc 0.21 USDollar3USDollarBritishPoundFrenchFranc6USDollar 0.5 BritishPoundUSDollar 4.9 FrenchFrancBritishPound 10.0 FrenchFrancBritishPound 1.99 USDollarFrenchFranc 0.09 BritishPoundFrenchFranc 0.19 USDollar0

Sample Output

Case 1: YesCase 2: No题解: 判断是否有大于1的环,用floryd算法,判断大于1的环;AC代码:#include <cstdio>#include <iostream>#include <cstring>#include <algorithm>#include <vector>#include <cmath>#include <queue>#include <map>#include <set>#define eps 1e-9using namespace std;typedef long long ll;typedef pair<int,int>P;const int M = 200;const int INF = 0x3f3f3f3f;const int mod = 10000007;double dp[M][M];string s;map<string,int>mp;int main(){int n,cnt = 0;while(cin>>n && n){mp.clear();for(int i = 1; i <= n; i++){cin>>s;mp[s] = i;}int m;cin>>m;for(int i = 1; i <= n; i++){for(int j = 1; j <= n; j++){if(i == j) dp[i][j] = 1;else dp[i][j] = 0;}}while(m–){int u,v;double c;cin>>s;u = mp[s];scanf("%lf",&c);cin>>s;v = mp[s];dp[u][v] = max(dp[u][v],c);}for(int k = 1; k <= n; k++){for(int i = 1; i <= n; i++){for(int j = 1; j <= n; j++){dp[i][j] = max(dp[i][j],dp[i][k] * dp[k][j]);}}}int vis = 0;for(int i = 1; i <= n && !vis; i++){if(dp[i][i] > 1) vis = 1;}printf("Case %d: ",++cnt);if(vis) puts("Yes");else puts("No");}return 0;}

,转动心中的期待,血在澎湃,吃苦流汗算什么。

Arbitrage(最短路问题)

相关文章:

你感兴趣的文章:

标签云: