zoukankan      html  css  js  c++  java
  • ZOJ 3211 Dream City (J) DP

    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
    ", dp[N][M]);
    37         
    38     }
    39     
    40     return 0;
    41 }
  • 相关阅读:
    使用命令行管理virtualBox
    springboot activiti 整合项目框架源码 shiro 安全框架 druid 数据库连接池
    activiti工作流的web流程设计器整合视频教程 SSM 和 独立部署
    java springMVC SSM 操作日志 4级别联动 文件管理 头像编辑 shiro redis
    MVC、MVP、MVVM 模式对比
    GoBelieve IM 消息推送的方案
    Token生成(转载)
    ios的framework合并
    Gobelieve 架构(转载)
    xcode10不兼容问题解决方法,framework编译脚本
  • 原文地址:https://www.cnblogs.com/titicia/p/3917087.html
Copyright © 2011-2022 走看看