码迷,mamicode.com
首页 > 其他好文 > 详细

ZOJ 3211 Dream City (J) DP

时间:2014-08-16 23:48:01      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   java   os   io   strong   

Dream City

Time Limit: 1 Second      Memory Limit: 32768 KB

JAVAMAN is visiting Dream City and he sees a yard of gold coin trees. There are n trees in the yard. Let‘s call them tree 1, tree 2 ...and tree n. At the first day, each tree i has ai coins on it (i=1, 2, 3...n). Surprisingly, each tree i can grow bi new coins each day if it is not cut down. From the first day, JAVAMAN can choose to cut down one tree each day to get all the coins on it. Since he can stay in the Dream City for at most m days, he can cut down at most m trees in all and if he decides not to cut one day, he cannot cut any trees later. (In other words, he can only cut down trees for consecutive m or less days from the first day!)

Given nmai and bi (i=1, 2, 3...n), calculate the maximum number of gold coins JAVAMAN can get.

 

Input

There are multiple test cases. The first line of input contains an integer T (T <= 200) indicates the number of test cases. Then T test cases follow.

Each test case contains 3 lines: The first line of each test case contains 2 positive integers n and m (0 < m <= n <= 250) separated by a space. The second line of each test case contains n positive integers separated by a space, indicating ai. (0 < ai <= 100, i=1, 2, 3...n) The third line of each test case also contains n positive integers separated by a space, indicating bi. (0 < bi <= 100, i=1, 2, 3...n)

Output

For each test case, output the result in a single line.

Sample Input

 

2
2 1
10 10
1 1
2 2
8 10
2 3

 

Sample Output

 

10
21

 

Hints:
Test case 1: JAVAMAN just cut tree 1 to get 10 gold coins at the first day.
Test case 2: JAVAMAN cut tree 1 at the first day and tree 2 at the second day to get 8 + 10 + 3 = 21 gold coins in all.

题意:给出N棵树 a[i]表示这棵树初始价值, b[i]表示每天能够增加多少价值。每天必须要砍树,问过M天后能得到的最大价值。

思路:有顺序的DP

 

 1 #include <iostream>
 2 #include <cstring>
 3 #include <cstdio>
 4 #include <string>
 5 #include <iomanip>
 6 #include <algorithm>
 7 #include <queue>
 8 #include <vector>
 9 #include <map>
10 using namespace std;
11 #define maxn 255
12 int T, N, M;
13 int dp[maxn][maxn];
14 struct Node{
15     int a, b;
16 }node[maxn];
17 int Max(int a, int b){
18     return a>b?a:b;
19 }
20 bool cmp(Node x, Node y){
21     return x.b < y.b;
22 }
23 int main(){
24     scanf("%d", &T);
25     while(T--){
26         scanf("%d%d", &N, &M);
27         for(int i = 1; i <= N; i++) scanf("%d", &node[i].a);
28         for(int i = 1; i <= N; i++) scanf("%d", &node[i].b);
29         memset(dp, 0, sizeof(dp));
30         sort(node+1, node+1+N, cmp);
31         for(int i = 1; i <= N; i++){
32             for(int j = 1; j <= M; j++){
33                 dp[i][j] = Max(dp[i-1][j], dp[i-1][j-1] + node[i].a + node[i].b*(j-1));
34             }
35         }
36         printf("%d\n", dp[N][M]);
37         
38     }
39     
40     return 0;
41 }

 

ZOJ 3211 Dream City (J) DP,布布扣,bubuko.com

ZOJ 3211 Dream City (J) DP

标签:des   style   blog   color   java   os   io   strong   

原文地址:http://www.cnblogs.com/titicia/p/3917087.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!