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

 //766 MS    772 KB    GNU C++
/* 题意:
给出一个图,n个点,m条边,每条边有一个权值,求是否存在一条回路,使边的权值积大于1 最短路径:
floyd小变异。数据比较小,直接用floyd遍历一遍,然后判断是否存在可行解 */
#include<iostream>
#include<map>
#include<string>
#include<stdio.h>
using namespace std;
double g[][];
int n,m;
void floyd()
{
for(int k=;k<=n;k++)
for(int i=;i<=n;i++)
for(int j=;j<=n;j++)
if(g[i][k]!=- && g[k][j]!=-)
if(g[i][j]==- || g[i][k]*g[k][j]>g[i][j])
g[i][j]=g[i][k]*g[k][j];
int flag=;
for(int i=;i<=n;i++){
//printf("%lf\n",g[i][i]);
if(g[i][i]>1.0)
flag=;
}
if(flag) puts("Yes");
else puts("No");
}
int main(void)
{
string a,b;
double c;
int k=;
while(cin>>n,n)
{
for(int i=;i<=n;i++)
for(int j=;j<=n;j++)
g[i][j]=-;
map<string,int>M;
for(int i=;i<=n;i++){
cin>>a;
M[a]=i;
}
scanf("%d",&m);
for(int i=;i<m;i++){
cin>>a>>c>>b;
g[M[a]][M[b]]=c;
}
printf("Case %d: ",k++);
floyd();
}
return ;
}

最新文章

  1. T-sql语句查询执行顺序
  2. 实现一个基于 SharePoint 2013 的 Timecard 应用(上)
  3. lua的string.gsub初使用
  4. Cross-Origin Resource Sharing协议介绍
  5. python中反射(__import__和getattr使用)
  6. lost+found目录
  7. mysql学习笔记(sqlalchemy安装及简单使用)
  8. log4net保存到数据库系列四、完整代码配置log4net
  9. iOS与HTML5交互方法总结(转)
  10. WebApi(三)-属性路由 自定义访问路径
  11. c# 面相对象1-概括
  12. ubuntu 14.04 hadoop eclipse 0配置基本环境
  13. iptables配置vsftp访问
  14. Hacking Bsides Vancouver 2018 walkthrough
  15. emwin之基于某个事件或标志创建某个界面的一种方法
  16. 03_java基础(一)之计算机应用知识普及
  17. RPDU
  18. Java实现二分法排序
  19. Scala-列表操作
  20. 初入spring boot(八 )Spring Data REST

热门文章

  1. Javascript入门笔记1-script标签
  2. Angular/cli的安装
  3. 洛谷题解:P1209 【[USACO1.3]修理牛棚 Barn Repair】
  4. Hibernate无法提取结果集
  5. 《Redis设计与实现》- 复制
  6. NetCore log4net 集成以及配置日志信息不重复显示或者记录
  7. 让菜鸡讲一讲费用流(EK)
  8. Lambda与LINQ
  9. 阿里云ECS Ubuntu安装PHP+Mysql+Apache+Nginx+Redis+Discuz
  10. JFinal 添加Druid插件