POJ 1860 Currency Exchange (SPFA松弛)

题目链接:http://poj.org/problem?id=1860

题意是给你n种货币,下面m种交换的方式,拥有第s种货币V元。问你最后经过任意转换可不可能有升值。下面给你货币u和货币v,r1是u到v的汇率,c1是u到v的手续费,同理r2是v到u的汇率,c2是v到u的手续费。转换后的钱B = (转换之前的钱A - c) * r。

我用spfa做的,不断地松弛。要是存在正环,或者中间过程最初的钱升值了,就说明会升值。有负环的话,不满足松弛的条件,慢慢地就会弹出队列,也就不会升值。

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <queue>
 5 using namespace std;
 6 const int MAXN = 1005;
 7 struct data {
 8     int next , to;
 9     double r , c;
10 }edge[MAXN * 3];
11 int head[MAXN] , cont;
12 double d[MAXN];
13
14 void init(int n) {
15     for(int i = 0 ; i <= n ; i++) {
16         head[i] = -1;
17         d[i] = 0;
18     }
19     cont = 0;
20 }
21
22 inline void add(int u , int v , double r , double c) {
23     edge[cont].next = head[u];
24     edge[cont].to = v;
25     edge[cont].r = r;
26     edge[cont].c = c;
27     head[u] = cont++;
28 }
29
30 bool spfa(int s , double V) {
31     queue <int> que;
32     while(!que.empty()) {
33         que.pop();
34     }
35     que.push(s);
36     d[s] = V;
37     while(!que.empty()) {
38         int temp = que.front();
39         que.pop();
40         for(int i = head[temp] ; ~i ; i = edge[i].next) {
41             double x = edge[i].r * (d[temp] - edge[i].c);
42             if(x > d[edge[i].to]) {  //松弛
43                 d[edge[i].to] = x;
44                 que.push(edge[i].to);
45                 if(d[s] > V) //增加则直接返回true
46                     return true;
47             }
48         }
49     }
50     return false;
51 }
52
53 int main()
54 {
55     int n , m , s , u , v;
56     double V , r , c;
57     while(~scanf("%d %d %d %lf" , &n , &m , &s , &V)) {
58         init(n);
59         for(int i = 0 ; i < m ; i++) {
60             scanf("%d %d %lf %lf" , &u , &v , &r , &c);
61             add(u , v , r , c);
62             scanf("%lf %lf" , &r , &c);
63             add(v , u , r , c);
64         }
65         if(spfa(s , V))
66             printf("YES\n");
67         else
68             printf("NO\n");
69     }
70 }
时间: 2024-08-15 02:09:48

POJ 1860 Currency Exchange (SPFA松弛)的相关文章

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

图论 --- spfa + 链式向前星 : 判断是否存在正权回路 poj 1860 : Currency Exchange

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

poj 1860 Currency Exchange(SPFA)

题目链接: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 currencies and performs exchange operations only with these currencies. There can b

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>

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

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

最短路(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(Bellman-Ford 改)

poj 1860 Currency Exchange 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

POJ 1860——Currency Exchange——————【最短路、SPFA判正环】

Currency Exchange Time Limit:1000MS     Memory Limit:30000KB     64bit IO Format:%I64d & %I64u Submit Status Practice POJ 1860 Description Several currency exchange points are working in our city. Let us suppose that each point specializes in two par