• (最优比例环) poj 3621


    Description

    Farmer John has decided to reward his cows for their hard work by taking them on a tour of the big city! The cows must decide how best to spend their free time.

    Fortunately, they have a detailed city map showing the L (2 ≤ L ≤ 1000) major landmarks (conveniently numbered 1.. L) and the P (2 ≤ P ≤ 5000) unidirectional cow paths that join them. Farmer John will drive the cows to a starting landmark of their choice, from which they will walk along the cow paths to a series of other landmarks, ending back at their starting landmark where Farmer John will pick them up and take them back to the farm. Because space in the city is at a premium, the cow paths are very narrow and so travel along each cow path is only allowed in one fixed direction.

    While the cows may spend as much time as they like in the city, they do tend to get bored easily. Visiting each new landmark is fun, but walking between them takes time. The cows know the exact fun valuesFi (1 ≤ Fi ≤ 1000) for each landmark i.

    The cows also know about the cowpaths. Cowpath i connects landmark L1i to L2i (in the direction L1i -> L2i ) and requires time Ti (1 ≤ Ti ≤ 1000) to traverse.

    In order to have the best possible day off, the cows want to maximize the average fun value per unit time of their trip. Of course, the landmarks are only fun the first time they are visited; the cows may pass through the landmark more than once, but they do not perceive its fun value again. Furthermore, Farmer John is making the cows visit at least two landmarks, so that they get some exercise during their day off.

    Help the cows find the maximum fun value per unit time that they can achieve.

    Input

    * Line 1: Two space-separated integers: L and P
    * Lines 2..L+1: Line i+1 contains a single one integer: Fi
    * Lines L+2..L+P+1: Line L+i+1 describes cow path i with three space-separated integers: L1i , L2i , and Ti

    Output

    * Line 1: A single number given to two decimal places (do not perform explicit rounding), the maximum possible average fun per unit time, or 0 if the cows cannot plan any trip at all in accordance with the above rules.

    Sample Input

    5 7
    30
    10
    10
    5
    10
    1 2 3
    2 3 2
    3 4 5
    3 5 2
    4 5 5
    5 1 3
    5 2 2

    Sample Output

    6.00

    Source

     
    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<string>
    #include<cmath>
    #include<cstdlib>
    #include<algorithm>
    #include<queue>
    #include<vector>
    #include<stack>
    #include<map>
    #define INF 100000000
    using namespace std;
    vector<int> e[1010],c[1010];
    const double eps=1e-5;
    int l,p;
    int in[1010];
    double dist[1010];
    int w[1010];
    bool vis[1010];
    bool spfa(double x)
    {
        queue<int> q;
        for(int i=1;i<=l;i++)
            dist[i]=INF,vis[i]=0,in[i]=0;
        dist[1]=0;
        vis[1]=1;
        q.push(1);
        in[1]=1;
        while(!q.empty())
        {
            int u=q.front();
            q.pop();
            vis[u]=0;
            for(int i=0;i<e[u].size();i++)
            {
                int v=e[u][i];
                double y=x*c[u][i]-w[v];
                if(dist[v]>dist[u]+y)
                {
                    dist[v]=dist[u]+y;
                    if(!vis[v])
                    {
                        vis[v]=1;
                        q.push(v);
                        in[v]++;
                        if(in[v]>l)
                            return true;
                    }
                }
     
            }
        }
        return false;
    }
    int main()
    {
        int x,y,z;
        scanf("%d%d",&l,&p);
        for(int i=1;i<=l;i++)
            scanf("%d",&w[i]);
        for(int i=1;i<=p;i++)
        {
            scanf("%d%d%d",&x,&y,&z);
            e[x].push_back(y);
            c[x].push_back(z);
        }
        double l,r,mid,ans=0;
        l=0,r=1e4;
        while(r-l>=eps)
        {
            mid=(l+r)*0.5;
            if(spfa(mid))
            {
                ans=mid;
                l=mid;
            }
            else
                r=mid;
        }
        printf("%.2lf
    ",ans);
        return 0;
    }
    

      

  • 相关阅读:
    NIO学习
    XML(二)
    IO和NIO
    Log4j
    异常处理机制
    XML
    数据交互
    分页实现的三种方式
    Idea破解
    数据库连接池
  • 原文地址:https://www.cnblogs.com/water-full/p/4459221.html
Copyright © 2020-2023  润新知