E - Currency Exchange

题目大意:

汇率问题,有N个银行,他们之间有一些汇率,某个人手里面拿着其中一种钱,然后在这里面兑换钱币,当然兑换是有汇率和手续费的,然后经过一系列兑换后问手里面的钱是不是能增加?

integer A and B - numbers of currencies it exchanges, and real R AB, C AB, R BA and C BA - ?

这句话是每行有6个数,前面两个数是AB货币,依次往后是AB之间的汇率,AB之间的交易税,BA之间的汇率,BA之间的交易税

貌似这题就是专门为了spfa设计的啊。。。。。只要判断手持的这种货币是否增长了就行。

/////////////////////////////////////////////////////////////////////////

想法没错,不过无情的错了一次,而且还找了很长时间的BUG,最终发现原来是公式写错了....计算汇率的时候应该先减去佣金在乘上汇率....全是泪

#include<algorithm>
#include<queue>
#include<stdio.h>
#include<string.h>
#include<vector>
#include<math.h>
using namespace std;

const int maxn = 105;
const int oo = 0xfffffff;

struct node
{
    int B;
    double rate, commission;//汇率和佣金

node(int B, double r, double c):B(B),rate(r),commission(c){}
};

vector<node> G[maxn];
double v[maxn];

int spfa(int k, double m)
{
    queue<int> Q;
    Q.push(k);

while(Q.size())
    {
        int s = Q.front();
        Q.pop();

int len = G[s].size();

for(int i=0; i<len; i++)
        {
            node q = G[s][i];

double p = (v[s]-q.commission)*q.rate;

if(p > v[q.B])
            {
                v[q.B] = p;
                Q.push(q.B);
            }
        }

if(v[k] > m)
            return 1;
    }

return 0;
}

int main()
{
    int N, M, s;
    double m;

while(scanf("%d%d%d%lf", &N, &M, &s, &m) != EOF)
    {
        int i;

for(i=1; i<=N; i++)
        {
            v[i] = 0;
            G[i].clear();
        }
        v[s] = m;

int a, b;
        double rab, cab, rba, cba;

for(i=0; i<M; i++)
        {
            scanf("%d%d%lf%lf%lf%lf", &a, &b, &rab, &cab, &rba, &cba);
            G[a].push_back(node(b, rab, cab));
            G[b].push_back(node(a, rba, cba));
        }

int ans = spfa(s, m);

//printf("%lf\n", v[s]);

if(ans == 1)
            printf("YES\n");
        else
            printf("NO\n");
    }

return 0;

}

时间: 2024-10-07 10:19:35

E - Currency Exchange的相关文章

Dijkstra算法(求解单源最短路)详解 + 变形 之 poj 1860 Currency Exchange

/* 求解单源最短路问题:Dijkstra算法(该图所有边的权值非负) 关键(贪心): (1)找到最短距离已经确定的节点,从它出发更新与其相邻节点的最短距离: (2)此后不再关心(1)中“最短距离已经确定的节点”. 时间复杂度(大概的分析,不准确): “找到最短距离已经确定的节点” => O(|V|) "从它出发更新与其相邻节点的最短距离" => 邻接矩阵:O(|V|),邻接表:O(|E|) 需要循环以上两个步骤V次,所以时间复杂度:O(V^2) 即:在|E|较小的情况下,

Currency Exchange(最短路)

poj—— 1860 Currency Exchange Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 29851   Accepted: 11245 Description Several currency exchange points are working in our city. Let us suppose that each point specializes in two particular curre

poj 1860 Currency Exchange 解题报告

题目链接:http://poj.org/problem?id=1860 题目意思:给出 N 种 currency, M种兑换方式,Nick 拥有的的currency 编号S 以及他的具体的currency(V).M 种兑换方式中每种用6个数描述: A, B, Rab, Cab, Rba, Cba.其中,Rab: 货币A 兑换 货币B 的汇率为Rab,佣金为Cab.Rba:货币B 兑换 货币 A 的汇率,佣金为Cba.假设含有的A货币是x,那么如果兑换成B,得到的货币B 就是:(x-Cab) *

[2016-04-13][POJ][1860][Currency Exchange]

时间:2016-04-13 23:48:46 星期三 题目编号:[2016-04-13][POJ][1860][Currency Exchange] 题目大意:货币对换,问最后能否通过对换的方式使钱变多, 分析: 直接spfa判断是否存在环,如果存在那么就能无限增值 如果不存在正环,那么直接判断最终d[s] 是否 大于初始值 #include<cstdio> #include<vector> #include<cstring> #include<queue>

POJ 1860 Currency Exchange (Bellman ford)

Currency Exchange Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 22405   Accepted: 8095 Description Several currency exchange points are working in our city. Let us suppose that each point specializes in two particular currencies and pe

最短路(Bellman_Ford) POJ 1860 Currency Exchange

题目传送门 1 /* 2 最短路(Bellman_Ford):求负环的思路,但是反过来用,即找正环 3 详细解释:http://blog.csdn.net/lyy289065406/article/details/6645778 4 */ 5 #include <cstdio> 6 #include <iostream> 7 #include <algorithm> 8 #include <cstring> 9 #include <vector>

(简单) POJ 1860 Currency Exchange,SPFA判圈。

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

POJ 1860 &amp; ZOJ 1544 Currency Exchange(最短路SPFA)

题目链接: ZJU:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=1544 PKU:http://poj.org/problem?id=1860 Description Several currency exchange points are working in our city. Let us suppose that each point specializes in two particular currenci

poj 1860 Currency Exchange (SPFA、正权回路 bellman-ford)

链接:poj 1860 题意:给定n中货币,以及它们之间的税率,A货币转化为B货币的公式为 B=(V-Cab)*Rab,其中V为A的货币量, 求货币S通过若干此转换,再转换为原本的货币时是否会增加 分析:这个题就是判断是否存在正权回路,可以用bellman-ford算法,不过松弛条件相反 也可以用SPFA算法,判断经过转换后,转换为原本货币的值是否比原值大... bellman-ford    0MS #include<stdio.h> #include<string.h> str

【POJ 1860】 Currency Exchange

[POJ 1860] Currency Exchange 模拟货比交易 输入数据n 货币种类 m 交易种类 s 初始货币类型 v 初始持币数 m行分别为 A B(该种交易的两种货币A.B) RAB, CAB, RBA ,CBA A->B和B->A的交易汇率和手续费 交易后金额为(s-c)*r 最短路模板题 遍历看是否有正环(即可无限增加资本) 写了两种做法 SPFA比BellMan耗时长 可啪 SPFA #include <cstdio> #include <vector&g