poj 2240 Arbitrage 最短路

    其实就是找到乘积最大的一条回路,如果大于1就是YES否则就是NO,用bellman N4都能过……

/*
author:jxy
lang:C/C++
university:China,Xidian University
**If you need to reprint,please indicate the source**
*/
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <queue>
#include <map>
#define INF 1E9
using namespace std;
map<string,int> hash;
double dis[31][31];
double d[31];
int n,m;
bool input()
{
    hash.clear();
    scanf("%d",&n);
    if(!n)return 0;
    int i;
    string a,b;
    double t;
    for(i=0;i<n;i++)
    {
        cin>>a;
        hash[a]=i;
    }
    scanf("%d",&m);
    for(i=0;i<m;i++)
    {
        cin>>a>>t>>b;
        dis[hash[a]][hash[b]]=t;
    }
    return 1;
}
bool bellman(int V0)
{
    memset(d,0,sizeof(d));
    d[V0]=1;
    int v,u,i;
    double t;
    for(i=0;i<n;i++)
        for(v=0;v<n;v++)
         for(u=0;u<n;u++)
           if(d[v]<(t=d[u]*dis[u][v]))
               d[v]=t;
    if(d[V0]>1)return 1;
    return 0;
}
bool solve()
{
    int i,v,u;
    for(i=0;i<n;i++)
        if(bellman(i))return 1;
    return 0;
}
int main()
{
    int T=0;
    while(input())
        printf("Case %d: %s\n",++T,solve()?"Yes":"No");
}
时间: 2024-11-03 08:08:13

poj 2240 Arbitrage 最短路的相关文章

POJ 2240 Arbitrage:最短路 Floyd

Arbitrage:http://poj.org/problem?id=2240 大意: 给你m种货币,给你m种货币兑换规则,问通过这些规则最后能不能盈利.eg:1美元换0.5英镑,1英镑换10法郎,1法郎换0.21美元,这样1美元能换0.5*10*0.21=1.05美元,净赚0.05美元. 思路: 用Floyd找出每两种钱之间的最大兑换关系,遍历一遍,看有没有那种钱币最后能盈利,有就输出Yes,没有就是No.在处理钱币名称与编号之间的关系时,可以用map存(比较好用),当然也可以用字符串比较.

Poj 2240 Arbitrage

click here~~ ***Arbitrage*** Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 17969 Accepted: 7597 Description Arbitrage is the use of discrepancies in currency exchange rates to transform one unit of a currency into more than one unit of t

poj 3259 Wormholes 最短路

     bellman判环即可 /* author:jxy lang:C/C++ university:China,Xidian University **If you need to reprint,please indicate the source** Build Time:2013-05-07-22.01 */ #include <iostream> #include <cstdio> #include <cstdlib> #include <cstri

POJ 1860 Currency Exchange:最短路 Bellman-Ford

Currency Exchange:http://poj.org/problem?id=1860 大意:有多种货币,之间可以交换,但是需要手续费,也就是说既有汇率又有手续费.问经过交换之后能不能赚. 思路:Bellman_Ford,因为要求最长路,所以松弛条件改一下就好了. Tips: 3              2                  1                20.0货币的数量   兑换点的数量     主人公拥有的货币量    主人公拥有货币的价值1 2 1.00

poj 1613 Cave Raider 最短路

很简单的最短路,只是加上了一定的限制条件.         首先读取时做下处理,把开放时间小于通行时间的去掉.         做最短路的时候判断好逻辑关系即可         注意,这题输入有问题,可能行尾有空格之类的 /* author:jxy lang:C/C++ university:China,Xidian University **If you need to reprint,please indicate the source** */ #include <iostream> #

POJ 1556 线段相交+最短路

题意:给出一个房间的俯视图 求从(0,5)到(10,5)的最短路径. 求出没有墙挡住的两点距离再用弗洛伊德求出0-sum的最短路径就可以.需要注意最短路可能经过某墙的端点,这时候不能判断条路径为非法. #include <iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<cmath> using namespace std; typedef doub

poj 1122 FDNY to the Rescue! 最短路

   注意 路径有权值为0的-- /* author:jxy lang:C/C++ university:China,Xidian University **If you need to reprint,please indicate the source** */ #include <algorithm> #include <cstdio> #include <cstdlib> #include <cstring> #include <queue&g

POJ 最短路问题题号汇总

求最短路基本的算法: 1>Dijkstra算法2>Bellman-Ford算法3>Floyd算法4>Floyd-Warshall算法5>Johnson算法6>A*算法 题目: 1.poj1062 昂贵的聘礼(中等)     此题是个经典题目:用Dijkstra即可:但是其中的等级处理需要一定的技巧:    要理解好那个等级制度:这个处理好,基本就是裸体Dijkstra: 2 poj1125 Stockbroker Grapevine(基本)    这个是简单Floyd,

poj系统训练计划

转载:http://www.cnblogs.com/silveryelf/archive/2011/10/29/2228681.html 初级: 基本算法: 枚举:1753    2965 贪心:1328    2109    2586 构造:3295 模拟:1068    2632    1573    2993    2996 图: 最短路径:1860    3259    1062    2253    1125    2240 最小生成树:1789    2485    1258