POJ1860-Currency Exchange(bellman-ford求正环)

题意:有多种货币,货币之间可以交换,这需要手续费,当你用100A币交换B币时,A到B的汇率是29.75,手续费是0.39,那么你可以得到(100 – 0.39) * 29.75 = 2963.3975 B币。问s币的金额经过交换最终得到的s币金额数能否增加

思路:把货币当作顶点,不同货币之间汇率和手续费作为边的信息建图,只要找出是否存在正权回路,且最后得到的s金额是增加的即可,在bellman-ford求负环是将d[i]初始化为无穷大,这里我们初始化为0即可


#include <cstdio>
#include <queue>
#include <cstring>
#include <iostream>
#include <cstdlib>
#include <algorithm>
#include <vector>
#include <map>
#include <string>
#include <set>
#include <ctime>
#include <cmath>
#include <cctype>
using namespace std;
#define maxn 100000
#define LL long long
int cas=1,T;
struct Edge
{
	int from,to;
	double rab,cab;//,rba,cba;
	Edge(int u,int v,double ra,double ca):from(u),to(v),rab(ra),cab(ca){}
};
double has = 0;
int n,m,num;
struct Bellford
{
	vector<Edge> edges;
	vector<int> G[200];
	bool inq[205];
	double d[205];
	int cnt[205];
	void init(int n)
	{
		for (int i = 0;i<=n;i++)
			G[i].clear();
		edges.clear();
	}
	void AddEdge(int from,int to,double ra,double ca)
	{
		int mm;
		edges.push_back(Edge(from,to,ra,ca));
        mm = edges.size();
		G[from].push_back(mm-1);
	}
	bool bellman_ford(int s)
	{
	//	printf("1");
        queue<double> q;
		memset(inq,0,sizeof(inq));
		memset(cnt,0,sizeof(cnt));
		for (int i = 0;i<=n;i++)
			d[i]=0;
		d[s]=has;
		inq[s]=1;
		q.push(s);
	//	int flag = 0;
		while (!q.empty())
		{
		//	printf("1\n");
			int u = q.front();q.pop();
			inq[u]=0;
			for (int i = 0;i<G[u].size();i++)
			{
				Edge &e = edges[G[u][i]];
			/*	if (d[s]>20)
				{
					flag = 1;
					break;
				}*/
				if (d[e.to] < (d[e.from]-e.cab) * e.rab)
				{
					d[e.to] = (d[e.from]-e.cab) * e.rab;
					if (!inq[e.to])
					{
						q.push(e.to);
						inq[e.to]=1;
						if (++cnt[e.to] > n)
							return false;
					}
				}
			}
		}
		return true;
	}
	
};
int main()
{
	while (scanf("%d%d%d%lf",&n,&m,&num,&has)!=EOF)
	{
		Bellford bf;
		bf.init(n);
		for (int i = 1;i<=m;i++)
		{
          int a,b;
		  double c,d,e,f;
		  scanf("%d%d%lf%lf%lf%lf",&a,&b,&c,&d,&e,&f);
		  bf.AddEdge(a,b,c,d);
		  bf.AddEdge(b,a,e,f);

		}
		int flag = bf.bellman_ford(num);
		
		if (!flag || bf.d[num] > has)
          puts("YES");
		else
			puts("NO");
	}
	//freopen("in","r",stdin);
	//scanf("%d",&T);
	//printf("time=%.3lf",(double)clock()/CLOCKS_PER_SEC);
	return 0;
}


题目

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 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.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算法
    原文地址: https://blog.csdn.net/qq_21057881/article/details/50571425
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞