zoukankan      html  css  js  c++  java
  • P2904 [USACO08MAR]跨河River Crossing

     P2904 [USACO08MAR]跨河River Crossing

    题目描述

    Farmer John is herding his N cows (1 <= N <= 2,500) across the expanses of his farm when he finds himself blocked by a river. A single raft is available for transportation.

    FJ knows that he must ride on the raft for all crossings and that that adding cows to the raft makes it traverse the river more slowly.

    When FJ is on the raft alone, it can cross the river in M minutes (1 <= M <= 1000). When the i cows are added, it takes M_i minutes (1 <= M_i <= 1000) longer to cross the river than with i-1 cows (i.e., total M+M_1 minutes with one cow, M+M_1+M_2 with two, etc.). Determine the minimum time it takes for Farmer John to get all of the cows across the river (including time returning to get more cows).

    Farmer John以及他的N(1 <= N <= 2,500)头奶牛打算过一条河,但他们所有的渡河工具,仅仅是一个木筏。 由于奶牛不会划船,在整个渡河过程中,FJ必须始终在木筏上。在这个基础上,木筏上的奶牛数目每增加1,FJ把木筏划到对岸就得花更多的时间。 当FJ一个人坐在木筏上,他把木筏划到对岸需要M(1 <= M <= 1000)分钟。当木筏搭载的奶牛数目从i-1增加到i时,FJ得多花M_i(1 <= M_i <= 1000)分钟才能把木筏划过河(也就是说,船上有1头奶牛时,FJ得花M+M_1分钟渡河;船上有2头奶牛时,时间就变成M+M_1+M_2分钟。后面的依此类推)。那么,FJ最少要花多少时间,才能把所有奶牛带到对岸呢?当然,这个时间得包括FJ一个人把木筏从对岸划回来接下一批的奶牛的时间。

    输入输出格式

    输入格式:
    • Line 1: Two space-separated integers: N and M

    • Lines 2..N+1: Line i+1 contains a single integer: M_i
    输出格式:
    • Line 1: The minimum time it takes for Farmer John to get all of the cows across the river.

    输入输出样例

    输入样例#1:
    5 10 
    3 
    4 
    6 
    100 
    1 
    
    输出样例#1:
    50 
    

    说明

    There are five cows. Farmer John takes 10 minutes to cross the river alone, 13 with one cow, 17 with two cows, 23 with three, 123 with four, and 124 with all five.

    Farmer John can first cross with three cows (23 minutes), then return (10 minutes), and then cross with the last two (17 minutes). 23+10+17 = 50 minutes total.

    动规: f[i] 是运过第 i 头牛后最少的时间,所以我们枚举所有小于等于 i 的数 j,就是先送过(i-j)头牛,再送剩余的牛,取最小值。

     1 #include<cstdio>
     2 #include<algorithm>
     3 #include<cstring>
     4 
     5 using namespace std;
     6 const int N = 3010;
     7 
     8 int f[N];
     9 int sum[N];
    10 int n,m;
    11 
    12 int main()
    13 {
    14     scanf("%d%d",&n,&m);
    15     for(int i=1;i<=n;++i)
    16     {
    17         scanf("%d",&sum[i]);
    18         sum[i] += sum[i-1];
    19         f[i] = sum[i]+m;
    20     }
    21     for(int i=1;i<=n;++i) sum[i] += m;
    22     for(int i=2;i<=n;++i)
    23     {
    24         for(int j=1;j<=i;++j)
    25         {
    26             f[i] = min(f[i],f[j]+sum[i-j]+m);
    27         }
    28     }
    29     printf("%d",f[n]);
    30     return 0;
    31 }

    有一点难看。稍微改了一下这样写的

     1 #include<cstdio>
     2 #include<algorithm>
     3 #include<cstring>
     4 
     5 using namespace std;
     6 const int N = 3010;
     7 
     8 int f[N];
     9 int sum[N];
    10 int n,m;
    11 
    12 int main()
    13 {
    14     scanf("%d%d",&n,&m);
    15     for(int i=1;i<=n;++i)
    16     {
    17         scanf("%d",&sum[i]);
    18         sum[i] += sum[i-1];
    19     }
    20     for(int i=1;i<=n;++i) 
    21     {
    22         sum[i] += m;
    23         f[i] = sum[i];
    24     }
    25     for(int i=2;i<=n;++i)
    26     {
    27         for(int j=1;j<=i;++j)
    28         {
    29             f[i] = min(f[i],f[j]+sum[i-j]+m);
    30         }
    31     }
    32     printf("%d",f[n]);
    33     return 0;
    34 }
  • 相关阅读:
    ffmpeg处理视频与声音
    吸引力
    bzoj 2752: [HAOI2012]高速公路(road)
    bzoj 3653 [湖南集训]谈笑风生
    bzoj 3143: [Hnoi2013]游走
    16,docker入门
    15.9,python操作redis集群
    15.8,redis-cluster配置
    15.7,哨兵集群
    15.6,redis主从同步
  • 原文地址:https://www.cnblogs.com/mjtcn/p/6880345.html
Copyright © 2011-2022 走看看