Stupid Tower Defense

Time Limit: 12000/6000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 151    Accepted Submission(s): 32

Problem Description
   FSF is addicted to a stupid tower defense game. The goal of tower defense games is to try to stop enemies from crossing a map by building traps to slow them down and towers which shoot at them as they pass.
   The map is a line, which has n unit length. We can build only one tower on each unit length. The enemy takes t seconds on each unit length. And there are 3 kinds of tower in this game: The red tower, the green tower and the blue tower.
   The red tower damage on the enemy x points per second when he passes through the tower.
   The green tower damage on the enemy y points per second after he passes through the tower.
   The blue tower let the enemy go slower than before (that is, the enemy takes more z second to pass an unit length, also, after he passes through the tower.)
   Of course, if you are already pass through m green towers, you should have got m*y damage per second. The same, if you are already pass through k blue towers, the enemy should have took t + k*z seconds every unit length.
   FSF now wants to know the maximum damage the enemy can get.
 
Input
   There are multiply test cases.
   The first line contains an integer T (T<=100), indicates the number of cases.
   Each test only contain 5 integers n, x, y, z, t (2<=n<=1500,0<=x, y, z<=60000,1<=t<=3)
 
Output
   For each case, you should output "Case #C: " first, where C indicates the case number and counts from 1. Then output the answer. For each test only one line which have one integer, the answer to this question.
 
Sample Input
1
2 4 3 2 1
 
Sample Output
Case #1: 12

Hint

For the first sample, the first tower is blue tower, and the second is red tower. So, the total damage is 4*(1+2)=12 damage points.

 
Author
UESTC
 
Source
 
 
思路:红塔放在最后,绿塔和蓝塔dp
注意:绿塔和蓝塔的效果都是延迟的,当前塔没有效果,要到下一格。
 #include<iostream>
#include<cstring>
#include<cstdlib>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<queue> #define N 1505
#define M 105
#define mod 1000000007
#define mod2 100000000
#define ll long long
#define maxi(a,b) (a)>(b)? (a) : (b)
#define mini(a,b) (a)<(b)? (a) : (b) using namespace std; ll i,j;
ll n;
int T;
ll x,y,z,t;
ll ans;
ll te;
ll k,m,p;
ll dp[N][N]; int main()
{
freopen("data.in","r",stdin);
scanf("%d",&T);
for(int cnt=;cnt<=T;cnt++)
{ memset(dp,,sizeof(dp));
scanf("%I64d%I64d%I64d%I64d%I64d",&n,&x,&y,&z,&t);
ans=;
for(i=;i<=n;i++){
for(k=;k<=i;k++){
m=i-k;p=n-m-k;
if(k==){
if(m==) ans=max(ans,t*n*x);
else{
dp[m][k]=dp[m-][k]+(t+k*z)*(m-)*y;
ans=max(ans,dp[m][k]+p*(t+k*z)*(x+m*y));
}
}
else{
if(m==){
dp[m][k]=dp[m][k-]+(t+(k-)*z)*m*y;
ans=max(ans,dp[m][k]+p*(t+k*z)*(x+m*y));
}
else{
dp[m][k]=max(dp[m-][k]+(t+k*z)*(m-)*y,dp[m][k-]+(t+(k-)*z)*m*y);
ans=max(ans,dp[m][k]+p*(t+k*z)*(x+m*y));
}
} }
}
printf("Case #%d: %I64d\n",cnt,ans);
}
return ;
}

最新文章

  1. delphi7 编译程序时报win32.indcu.a病毒的解决方法
  2. if __name__ == &#39;__main__&#39;:
  3. 现代JavaScript
  4. SqlServer2008R2用Windows身份登录18456错误解决
  5. ubuntu 14.04 64位安装bigbluebutton
  6. HBASE的读写以及client API
  7. Qt之QTableView添加复选框(QAbstractTableModel)
  8. 稀疏表示(sparse representation)和字典学习
  9. Asp.Net Mvc5 之Controller
  10. angularJS看MVVM
  11. 分辨率验证工具 - 【Firesizer】的使用
  12. MySQL逻辑备份mysqldump
  13. spring cloud:config-server中@RefreshScope的&quot;陷阱&quot;
  14. jtl转化成CSV格式的聚合报告
  15. k8s的内置DNS增加父系DNS方法
  16. hexo发表博文
  17. tensorflow随机张量创建
  18. 手把手让你实现开源企业级web高并发解决方案(lvs+heartbeat+varnish+nginx+eAccelerator+memcached)
  19. Ruby环境配置
  20. 更安全的HTTPS

热门文章

  1. knn算法之预测数字
  2. Mac brew 安装amp环境
  3. Java JDBC的基本知识
  4. linux关于进程、内存和cpu情况
  5. day12-迭代器
  6. Python学习笔记:re模块(正则表达式)
  7. Running OOM killer script for process 32248 for Solr on port 8983
  8. printk的使用技巧
  9. iframe内容刷新
  10. STL学习笔记2--list