zoukankan      html  css  js  c++  java
  • POJ 3621Sightseeing Cows

    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 9851   Accepted: 3375

    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 values Fi (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

    也不是很难的题,套路一下 ,唯一就是求是否存在正环的时候,可以把边权取反,用spfa搞 。
     1 #include <iostream>
     2 #include <cstring>
     3 #include <cstdio>
     4 #include <queue>
     5 const int N = 1000 + 11 , M = 5000 + 11 ;
     6 #define inf 1000000000
     7 using namespace std ;
     8 int cnt , n , m , node[N]  , head[N]  , cs[N]  ; double r ;
     9 bool used[N] ; double dis[N] ;
    10 struct id
    11 {
    12     int fro , to , nxt , val ; double w ;
    13 } edge[M] ;
    14 queue< int > Q ; 
    15 
    16 void add( int u , int v , int c )
    17 {
    18     edge[++cnt].fro = u , edge[cnt].to = v ;
    19     edge[cnt].val = c , edge[cnt].nxt = head[u] ; head[u] = cnt ;
    20 }
    21 
    22 
    23 void Init( )
    24 {
    25     scanf( "%d%d" , &n , &m ) ;
    26     for( int x = 1 ; x <= n ; ++x )
    27     {
    28         scanf( "%d" , node + x ) ;
    29         r += node[x] ;
    30     }
    31     int u , v , c ;
    32     for( int x = 1 ; x <= m ; ++x )
    33     {
    34         scanf( "%d%d%d" , &u , &v , &c ) ;
    35         add( u , v , c ) ;
    36     }    
    37 }
    38 
    39 
    40 bool spfa( double l )
    41 {
    42     while( !Q.empty( ) ) Q.pop( ) ;
    43     for( int x = 1 ; x <= n ; ++x ) dis[x] = inf ;
    44     for( int x = 1 ; x <= cnt ; ++x ) edge[x].w = edge[x].val * l - node[edge[x].fro] ;
    45     memset( cs , 0 , sizeof(cs) ) ;
    46     memset( used , 0 , sizeof( used ) ) ;
    47     Q.push( 1 ) ; dis[1] = 0 ; used[1] = true ;
    48     while( !Q.empty( ) )
    49     {
    50         int u = Q.front( ) ; Q.pop( ) ;used[u] = false ; ++cs[u] ;
    51         if( cs[u] == n ) return 1 ;
    52         for( int i = head[u] ; i ; i = edge[i].nxt )
    53         {
    54             int v = edge[i].to ;
    55             if( dis[v] >= dis[u] + edge[i].w )
    56             {
    57                 dis[v] = dis[u] + edge[i].w ;
    58                 if( !used[v] ) used[v] = true , Q.push( v ) ;
    59             }
    60         
    61         } 
    62     }
    63     return false ; 
    64 }
    65 
    66 
    67 
    68 void Sovle( )
    69 {
    70     double l = 0 ; 
    71     while( r - l > 1e-7 )
    72     {
    73         double mid = l +  ( r - l ) / 2 ;
    74         if( spfa( mid ) ) l = mid ;
    75         else r = mid ;
    76     }
    77     printf( "%.2f
    " , l ) ;
    78 }
    79 
    80 
    81 int main( )
    82 {
    83     Init( ) ;
    84     Sovle( ) ;
    85     return 0 ;
    86 }
  • 相关阅读:
    使用urllib
    spring常用的45个注解
    音痴
    android与JS函数传参遗留问题
    方舟编译器源码过一遍流程
    什么是语义学,解释器
    synchronized,ReentrantLock解决锁冲突,脏读的问题
    【Unity3d】ScrollRect自动定位到某点
    计算点到直线的距离】 C#实现
    理财-房月供占工资多少比较合适?
  • 原文地址:https://www.cnblogs.com/Ateisti/p/6028229.html
Copyright © 2011-2022 走看看