zoukankan      html  css  js  c++  java
  • Battle Ships 动态规划

    Description

    Battle Ships is a new game which is similar to Star Craft. In this game, the enemy builds a defense tower, which has L longevity. The player has a military factory, which can produce N kinds of battle ships. The factory takes ti seconds to produce the i-th battle ship and this battle ship can make the tower loss li longevity every second when it has been produced. If the longevity of the tower lower than or equal to 0, the player wins. Notice that at each time, the factory can choose only one kind of battle ships to produce or do nothing. And producing more than one battle ships of the same kind is acceptable.

    Your job is to find out the minimum time the player should spend to win the game.

    Input

    There are multiple test cases. 
    The first line of each case contains two integers N(1 ≤ N ≤ 30) and L(1 ≤ L ≤ 330), N is the number of the kinds of Battle Ships, L is the longevity of the Defense Tower. Then the following N lines, each line contains two integers i(1 ≤ i ≤ 20) and li(1 ≤ li ≤ 330) indicating the produce time and the lethality of the i-th kind Battle Ships.

    Output

    Output one line for each test case. An integer indicating the minimum time the player should spend to win the game.

    Sample Input

    1 1
    1 1
    2 10
    1 1
    2 5
    3 100
    1 10
    3 20
    10 100
    
    

    Sample Output

    2
    4
    5
    ***********************************************************************************************************************************************************
     1 /*
     2 完全背包,每次优化前j时间的最大破坏量
     3 最后递推出最优值。
     4 */
     5 #include<iostream>
     6 #include<string>
     7 #include<cstring>
     8 #include<cmath>
     9 #include<cstdio>
    10 using namespace std;
    11 int dp[1001];
    12 int t[1001],p[1001];
    13 int n,m,i,j,k;
    14 int main()
    15 {
    16    while(scanf("%d %d",&n,&m)!=EOF)
    17    {
    18       for(i=1;i<=n;i++)
    19       {
    20          scanf("%d %d",&t[i],&p[i]);
    21       }
    22       memset(dp,0,sizeof(dp));
    23       for(i=1;i<=n;i++)
    24        for(j=0;j<400;j++)
    25        {
    26           dp[j+t[i]]=max(dp[j+t[i]],dp[j]+j*p[i]);
    27        }
    28        for(j=0;j<400;j++)
    29         if(dp[j]>=m)
    30         {
    31          printf("%d
    ",j);
    32          break;
    33         }
    34    }
    35    return 0;
    36 }
    View Code
  • 相关阅读:
    关于各种编程语言调用C星寻路插件的例子
    练习作品11:语音识别 准确度70%
    练习作品10:被一个傻叉坑了 要求把串口 封装到DLL中调用;
    Dynamics CRM 构建IN查询
    初识Spark2.0之Spark SQL
    从Dynamics CRM2011到Dynamics CRM2016的升级之路
    Dynamics CRM2011 导入解决方案报根组件插入错误的解决方法
    基于hadoop的BI架构
    Dynamics CRM 不同的站点地图下设置默认不同的仪表板
    Dynamics CRM 打开数据加密报错及修改用户邮件保存报错的解决方法
  • 原文地址:https://www.cnblogs.com/sdau--codeants/p/3435432.html
Copyright © 2011-2022 走看看