数算实习:Currency Exchange(bellman_ford判正向环)
001:Currency Exchange
查看提交统计提问
总时间限制: 1000ms 内存限制: 65536kB
描述
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.
输入
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.
输出
If Nick can increase his wealth, output YES, in other case output NO to the output file.
样例输入
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
样例输出
YES
来源
Northeastern Europe 2001, Northern Subregion
#include
using namespace std;
const int max_node = 105;
struct EDGE
{int from;int to;double from_rate_to;double from_cost_to;void init(int a, int b, double c, double d){from = a;to = b;from_rate_to = c;from_cost_to = d;}
} edge[max_node * 2];
int node_num, edge_num, mysort, num;
double dist[max_node], mymoney;bool bellman_ford()
{for (int i = 0; i <= node_num; i++){dist[i] = 0;}dist[mysort] = mymoney;int i;for (i = 1; i <= node_num; i++){bool flag = 0;for (int j = 0; j < edge_num; j++){if(dist[edge[j].to] < (dist[edge[j].from] - edge[j].from_cost_to) * edge[j].from_rate_to){dist[edge[j].to] = (dist[edge[j].from] - edge[j].from_cost_to) * edge[j].from_rate_to;flag = true;}}if(!flag){break;}}if(i == node_num + 1 || dist[mysort] > mymoney)return true;return false;
}
int main()
{freopen("myin.txt", "r", stdin);freopen("myout.txt", "w", stdout);cin >> node_num >> num >> mysort >> mymoney;int a, b;double c, d, e, f;edge_num = 0;for (int i = 0; i < num; i++){cin >> a >> b >> c >> d >> e >> f;edge[edge_num++].init(a, b, c, d);edge[edge_num++].init(b, a, e, f);}if(bellman_ford()){cout << "YES" << endl;}else {cout << "NO" << endl;}return 0;
}
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!
