1. 程式人生 > >洛谷 P2904 [USACO08MAR]跨河River Crossing

洛谷 P2904 [USACO08MAR]跨河River Crossing

int pre spa i++ -s there 輸入 span 需要

題目描述

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.

題目大意:給出載i頭奶牛過河的時間,求載n頭奶牛過河的最短時間,其中FJ在船上多需要m時間。

題解:dp

轉移方程:f[i]=min(f[i],f[i-j]+sum[j]+2*m)

f[i]為載i頭奶牛過河的時間,其實是f[i][j]第j次過河,一共運過去了i頭牛,枚舉當前這一次運幾頭,

註意,最後還要-m,因為最後FJ不會來了。

錯因:沒有讀清題目,以為mi為載第i頭奶牛的花費時間。

代碼:

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;

int n,m,sum[2520],f[2520];

int main(){
    scanf("%d%d",&n,&m);
    for(int i=1;i<=n;i++){
        int x;
        scanf("%d",&x);
        sum[i]=sum[i-1]+x;
    }
    memset(f,0x3f,sizeof(f));
    f[0]=0;
    for(int i=1;i<=n;i++){
        for(int j=0;j<=i;j++){
            f[i]=min(f[i],f[i-j]+sum[j]+2*m);
        }
    }
    cout<<f[n]-m<<endl;
    return 0;
}

洛谷 P2904 [USACO08MAR]跨河River Crossing