zoukankan      html  css  js  c++  java
  • POJ1860 Currency Exchange

    Currency Exchange
    Time Limit: 1000MS Memory Limit: 30000K
    Total Submissions: 28594 Accepted: 10678
    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<=103.
    For each point exchange rates and commissions are real, given with at most two digits after the decimal point, 10-2<=rate<=102, 0<=commission<=102.
    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 104.
    Output

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

    3 2 1 20.0
    1 2 1.00 1.00 1.00 1.00
    2 3 1.10 1.00 1.10 1.00
    Sample Output

    YES
    题意:一个人想要通过货币之间的周转最终得到钱更多,其实就是bellman—ford算法最终判断是否存在正权边。

    #include<stdio.h>
    #include<iostream>
    #include<algorithm>
    using namespace std;
    //const int inf=0x3f3f3f3f;
    const int maxn=505;
    double dis[maxn];//double型
    struct node
    {
        int a,b;
        double rast,cost;
    }num[maxn];
    int n,m,style;
    double much;
    int cnt;
    int bellman_ford()
    {
        for(int i=1;i<=n;i++)
            dis[i]=0;//注意最初赋值是0,
        dis[style]=much;
        for(int i=1;i<n;i++)
        {
            for(int j=1;j<cnt;j++)
            {
                if(dis[num[j].b]<(dis[num[j].a]-num[j].cost)*num[j].rast)
                    dis[num[j].b]=(dis[num[j].a]-num[j].cost)*num[j].rast;
            }
        }
        for(int j=1;j<cnt;j++)
            if(dis[num[j].b]<(dis[num[j].a]-num[j].cost)*num[j].rast)
            return 0;
        return 1;
    }
    int main()
    {
        while(~scanf("%d%d%d%lf",&n,&m,&style,&much))
        {
            cnt=1;
            while(m--)
            {
                int a,b;
                double rab,cab,rba,cba;
                scanf("%d%d%lf%lf%lf%lf",&a,&b,&rab,&cab,&rba,&cba);
                num[cnt].a=a;
                num[cnt].b=b;
                num[cnt].rast=rab;
                num[cnt++].cost=cab;
                num[cnt].a=b;
                num[cnt].b=a;
                num[cnt].rast=rba;
                num[cnt++].cost=cba;
    //            scanf("%d%d%lf%lf",&num[cnt].a,&num[cnt].b,&num[cnt].rab,&num[cnt].cab);
    //            cnt++;
    //            int q=cnt-1;
    //            num[cnt].a=num[q].b;
    //            num[cnt].b=num[q].a;
    //            scanf("%lf%lf",&num[cnt].rab,&num[cnt].cab);
    //            cnt++;
            }
            //printf("%d
    ",cnt);
            if(bellman_ford())
                printf("NO
    ");
            else
                printf("YES
    ");
        }
        return 0;
    }
    "No regrets."
  • 相关阅读:
    学习笔记10.28
    学习目标
    ajax传值修改数据
    php 4种传值方式
    01-17权限管理
    01-16作业:文件管理
    01-15文件操作
    01-12文件上传
    1-6 号 详情
    ajax登陆提示
  • 原文地址:https://www.cnblogs.com/zxy160/p/7215155.html
Copyright © 2011-2022 走看看