POJ - A Mini Locomotive(DP 01背包)
发布日期:2021-07-01 00:16:13 浏览次数:2 分类:技术文章

本文共 3576 字,大约阅读时间需要 11 分钟。

题目链接:

Time Limit: 1000MS   Memory Limit: 30000K

Description

A train has a locomotive that pulls the train with its many passenger coaches. If the locomotive breaks down, there is no way to pull the train. Therefore, the office of railroads decided to distribute three mini locomotives to each station. A mini locomotive can pull only a few passenger coaches. If a locomotive breaks down, three mini locomotives cannot pull all passenger coaches. So, the office of railroads made a decision as follows: 

1. Set the number of maximum passenger coaches a mini locomotive can pull, and a mini locomotive will not pull over the number. The number is same for all three locomotives. 
2. With three mini locomotives, let them transport the maximum number of passengers to destination. The office already knew the number of passengers in each passenger coach, and no passengers are allowed to move between coaches. 
3. Each mini locomotive pulls consecutive passenger coaches. Right after the locomotive, passenger coaches have numbers starting from 1. 
For example, assume there are 7 passenger coaches, and one mini locomotive can pull a maximum of 2 passenger coaches. The number of passengers in the passenger coaches, in order from 1 to 7, is 35, 40, 50, 10, 30, 45, and 60. 
If three mini locomotives pull passenger coaches 1-2, 3-4, and 6-7, they can transport 240 passengers. In this example, three mini locomotives cannot transport more than 240 passengers. 
Given the number of passenger coaches, the number of passengers in each passenger coach, and the maximum number of passenger coaches which can be pulled by a mini locomotive, write a program to find the maximum number of passengers which can be transported by the three mini locomotives. 

Input

The first line of the input contains a single integer t (1 <= t <= 11), the number of test cases, followed by the input data for each test case. The input for each test case will be as follows: 

The first line of the input file contains the number of passenger coaches, which will not exceed 50,000. The second line contains a list of space separated integers giving the number of passengers in each coach, such that the ith number of in this line is the number of passengers in coach i. No coach holds more than 100 passengers. The third line contains the maximum number of passenger coaches which can be pulled by a single mini locomotive. This number will not exceed 1/3 of the number of passenger coaches. 

Output

There should be one line per test case, containing the maximum number of passengers which can be transported by the three mini locomotives.

Sample Input

1

7
35 40 50 10 30 45 60
2

Sample Output

240

Problem solving report:

Description: 某个车站有N个火车车厢,编号为1~N,每个车厢上有wi个人。这个车站还有三个火车头,他们能拉最多m个车厢(m<=N/3),而且这m个车厢的编号要连续的。问这三个火车头最多能拉多少个人。

Problem solving: 为了拉更多的人,每个火车头一定是要拉m个连续的车厢。
令f[i][j]代表前i个车厢,用j个火车头拉,最多能拉的人数。
对于第i个车厢,如果当前这个车头选择要拉这个车厢,那么要把以i为最后一个车厢的连续m个车厢一起拉,所以状态转移方程是:dp[i][j] = max(dp[i-1][j],dp[i-m][j-1]+v[i]-v[i-m]);

#include 
#include
#include
#define MAXN 50005using namespace std;int t, n, m, w[MAXN], v[MAXN], dp[MAXN][4];int main(){ scanf("%d", &t); while (t--) { scanf("%d", &n); memset(dp, 0, sizeof(dp)); for (int i = 1; i <= n; i++) { scanf("%d", &w[i]); v[i] = v[i - 1] + w[i]; } scanf("%d", &m); for (int i = m; i <= n; i++) for (int j = 3; j >= 1; j--) dp[i][j] = max(dp[i - 1][j], dp[i - m][j - 1] + v[i] - v[i - m]); printf("%d\n", dp[n][3]); } return 0;}

转载地址:https://lzyws739307453.blog.csdn.net/article/details/86655509 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:POJ - Ubiquitous Religions(并查集)
下一篇:POJ - Charm Bracelet(01背包)

发表评论

最新留言

路过,博主的博客真漂亮。。
[***.116.15.85]2024年04月09日 07时24分40秒