博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Currency Exchange
阅读量:2038 次
发布时间:2019-04-28

本文共 3706 字,大约阅读时间需要 12 分钟。

Several currency exchange points are working in our city. Let us suppose that each point specializes in two particular currencies and performs exchange operations only with these currencies. There can be several points specializing in the same pair of currencies. Each point has its own exchange rates, exchange rate of A to B is the quantity of B you get for 1A. Also each exchange point has some commission, the sum you have to pay for your exchange operation. Commission is always collected in source currency. 

For example, if you want to exchange 100 US Dollars into Russian Rubles at the exchange point, where the exchange rate is 29.75, and the commission is 0.39 you will get (100 - 0.39) * 29.75 = 2963.3975RUR. 
You surely know that there are N different currencies you can deal with in our city. Let us assign unique integer number from 1 to N to each currency. Then each exchange point can be described with 6 numbers: integer A and B - numbers of currencies it exchanges, and real R AB, C AB, R BA and C BA - exchange rates and commissions when exchanging A to B and B to A respectively. 
Nick has some money in currency S and wonders if he can somehow, after some exchange operations, increase his capital. Of course, he wants to have his money in currency S in the end. Help him to answer this difficult question. Nick must always have non-negative sum of money while making his operations. 

Input

The first line of the input contains four numbers: N - the number of currencies, M - the number of exchange points, S - the number of currency Nick has and V - the quantity of currency units he has. The following M lines contain 6 numbers each - the description of the corresponding exchange point - in specified above order. Numbers are separated by one or more spaces. 1<=S<=N<=100, 1<=M<=100, V is real number, 0<=V<=10 3. 

For each point exchange rates and commissions are real, given with at most two digits after the decimal point, 10 -2<=rate<=10 2, 0<=commission<=10 2. 
Let us call some sequence of the exchange operations simple if no exchange point is used more than once in this sequence. You may assume that ratio of the numeric values of the sums at the end and at the beginning of any simple sequence of the exchange operations will be less than 10 4. 

Output

If Nick can increase his wealth, output YES, in other case output NO to the output file.

Sample Input

3 2 1 20.01 2 1.00 1.00 1.00 1.002 3 1.10 1.00 1.10 1.00

Sample Output

YES

C++版本一

SPFA

#include
#include
double c[110],d[110],e[110],f[110],v,dis[110];int a[110],b[110],n,m,s;int main(){ int i,k,flag; while(~ scanf("%d %d %d %lf",&n,&m,&s,&v)) { memset(dis,0,sizeof(dis)); for(i = 1;i<=m;i ++) { scanf("%d %d %lf %lf %lf %lf",&a[i],&b[i],&c[i],&d[i],&e[i],&f[i]); } dis[s] = v; int find; for(k = 1;k<=n-1;k ++) { find = 0; for(i = 1;i<=m;i ++) { if(dis[a[i]]<(dis[b[i]]-f[i])*e[i]) { dis[a[i]] = (dis[b[i]]-f[i])*e[i]; find = 1; } if(dis[b[i]] < (dis[a[i]]-d[i])*c[i]) { dis[b[i]] = (dis[a[i]]-d[i])*c[i]; find = 1; } } if(find == 0) break; } flag = 0; for(i = 1;i<=n;i ++) { if(dis[a[i]] < (dis[b[i]]-f[i])*e[i]) { flag = 1; break; } if(dis[b[i]] < (dis[a[i]]-d[i])*c[i]) { flag = 1; break; } } if(flag == 1) printf("YES\n"); else printf("NO\n"); } return 0;}

C++版本二

Bellman_Ford

#include 
#include
#include
#include
#include
#define INF 0x3f3f3f3f#define mod 1000000007 using namespace std; int s,n,m,k;double v;struct node{ int a,b; double r,c;}arr[202];double dis[200];int bf(){ int i,j; memset(dis,0,sizeof(dis)); dis[s]=v; for (i=1;i

 

转载地址:http://vewof.baihongyu.com/

你可能感兴趣的文章
6月13日-健身15
查看>>
6月17日-健身17
查看>>
6月20日-健身18
查看>>
有的人遇见就是一生
查看>>
冒险的勇气
查看>>
等待中邂逅命运
查看>>
北方姑娘初见海
查看>>
6月22日-健身19
查看>>
从你的全世界路过
查看>>
世界以痛吻我,我却报之以歌
查看>>
雕刻时光
查看>>
5月25日-健身9-下肢
查看>>
5月18日-健身7-上肢
查看>>
6月4日-健身12-下肢
查看>>
5月23日-健身8-上肢
查看>>
5月29日-健身11-下肢
查看>>
腾讯技术面试官如是说
查看>>
5月27日-健身10-下肢
查看>>
5月16日-健身6-下肢
查看>>
算法工程师 面经2019年5月
查看>>