Currency Exchange (弗洛伊德)

来源:互联网 发布:淘宝合并购物车 编辑:程序博客网 时间:2024/06/09 16:43

Problem Description
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 RAB, CAB, RBA and CBA - 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<sup>3</sup>. <br>For each point exchange rates and commissions are real, given with at most two digits after the decimal point, 10<sup>-2</sup><=rate<=10<sup>2</sup>, 0<=commission<=10<sup>2</sup>. <br>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<sup>4</sup>. <br>

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

题目大概:

给出多个多个货币,多个贸易点,本金,各种货币的兑换比率和佣金,问是否能赚钱。

思路:

货币是图中的点,贸易点是路径,最后的所得金是路径长度,用弗洛伊德求最大路径长度,即求是否有正权回路。

代码:


#include <iostream>#include <algorithm>#include <cstring>#include <string>using namespace std;int  map[200][2];double jin[200][2];double v[200];int t;int main(){    int n,m,o;    double sum;    cin>>n>>m>>o>>sum;   t=0;    for(int i=1;i<=m;i++)    { int q,w;    double a1,a2,s1,s2;    cin>>q>>w>>a1>>a2>>s1>>s2;    map[t][0]=q;map[t][1]=w;    jin[t][0]=a1;jin[t][1]=a2;    t++;    map[t][0]=w;map[t][1]=q;    jin[t][0]=s1;jin[t][1]=s2;     t++;    }    memset(v,0,sizeof(v));     v[o]=sum;    for(int k=1;k<n;k++)    {        for(int i=0;i<t;i++)        {          if(((v[map[i][0]])-jin[i][1])*jin[i][0]>v[map[i][1]])          {              v[map[i][1]]=((v[map[i][0]])-jin[i][1])*jin[i][0];          }        }    }      int i;     for(i=0;i<t;i++)    if(((v[map[i][0]])-jin[i][1])*jin[i][0]>v[map[i][1]]){break;}    if(i<t)cout<<"YES"<<endl;    else cout<<"NO"<<endl;    return 0;}