Poj1976 A Mini Locomotive

Source: Internet
Author: User

A Mini Locomotive
Time Limit: 1000 MS Memory Limit: 30000 K
Total Submissions: 2115 Accepted: 1173


Description

A train has a locomotive that pulls the train with its own passenger coaches. if the locomotive breaks down, there is no way to pull the train. therefore, the office of railroads decided to distristmthree 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 demo-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 shoshould 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

Question: http://poj.org/problem? Id = 1976

Analysis: good questions, strong recommendation!

If f [I] [j] is set, it indicates the number of people that can be pulled at most by j carriage.

Then f [I] [j] = max {f [I-1] [j], f [k] [J-1] + a [I]-a [k]}, k = max (I-m, 0)

 

 

[Cpp] view plaincopyprint?
# Include <stdio. h>
# Include <string. h>
# Define max (a, B) (a)> (B )? (A) (B ))
Int f [50005] [4], a [50005];
 
Int main ()
{
Int t, n, I, j, k, m;
Scanf ("% d", & t );
While (t --)
{
Scanf ("% d", & n );
For (I = 1, a [0] = 0; I <= n; I ++) scanf ("% d", & a [I]), a [I] + = a [I-1];
Scanf ("% d", & m );
Memset (f, 0, sizeof (f ));
For (I = 1; I <= n; I ++)
For (j = 1; j <4; j ++)
{
K = I-m;
If (k <0) k = 0;
F [I] [j] = max (f [I-1] [j], f [k] [J-1] + a [I]-a [k]);
}
Printf ("% d \ n", f [n] [3]);
}
Return 0;
}

# Include <stdio. h>
# Include <string. h>
# Define max (a, B) (a)> (B )? (A) (B ))
Int f [50005] [4], a [50005];

Int main ()
{
Int t, n, I, j, k, m;
Scanf ("% d", & t );
While (t --)
{
Scanf ("% d", & n );
For (I = 1, a [0] = 0; I <= n; I ++) scanf ("% d", & a [I]), a [I] + = a [I-1];
Scanf ("% d", & m );
Memset (f, 0, sizeof (f ));
For (I = 1; I <= n; I ++)
For (j = 1; j <4; j ++)
{
K = I-m;
If (k <0) k = 0;
F [I] [j] = max (f [I-1] [j], f [k] [J-1] + a [I]-a [k]);
}
Printf ("% d \ n", f [n] [3]);
}
Return 0;
}


 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.