CosmoCraft

Time Limit: 1000ms
Memory Limit: 32768KB

This problem will be judged on HDU. Original ID: 4257
64-bit integer IO format: %I64d      Java class name: Main

 
In the two-player game CosmoCraft you manage an economy in the hopes of producing an army capable of defeating your opponent. You manage the construction of workers, production facilities, and army units; the game revolves around balancing the resources you allocate to each. The game progresses in turns.
1. Workers give you income at the rate of 1 dollar per turn. 
2. Production facilities let you produce either an army unit or a worker for the cost of 1 dollar. (only 1 army unit or worker can be produced per turn per facility) 
3. It costs 1 dollar to create a production facility. 
4. Your army, of course, lets you fight against your opponent. 
You start off with n workers and k production facilities. The game progresses in turns – at each turn, you can spend the income you get from your workers on a mixture of workers, army, and creating production facilities. Workers produced this round do not give you income until the next round; likewise, production facilities do not become active until the next round. Any unspent income from the current round carries over to the next. 
At the end of a round, you can take the total army you’ve produced and attack your opponent; if you have strictly more units than your opponent, the opponent loses immediately, and you retain the difference of the army sizes. Otherwise, your army is crushed and your opponent is left with the difference of the army sizes. (it would be wise for him to counter-attack after this, but you don’t lose immediately at least). The game ends after t turns, at which point both players will usually attack with the larger army reigning victorious. 
You’re playing against your friend, and since you’ve played against him so many times you know exactly what he’s going to spend his money on at every turn, and exactly when he’s going to attack. Knowing this, you’ve decided that the best strategy is to play defensively – you just want to survive every attack, and amass as large an army in the meantime so you can counterattack (and hopefully win) at the end of the game. 
What’s the largest army you can have at the end of the game, given that you must survive all your friend’s attacks?

 

Input

There will be several test cases in the input. Each test case will begin with a line with three integers: 
n k t 
where n (1≤n≤100) is the number of workers you start with, k (1≤k≤100) is the number of production facilities you have at the start, and t(1≤t≤10,000) is the number of turns. On the next line will be t-1 integers, ai (0≤ai≤Max signed 64-bit integer), separated by single spaces. The ith integer indicates the strength of the attack (that is, the number of army units your opponent is using in that attack) on turn i. The input will end with a line with three 0s.

Hint

Huge input, please ues c++.

 

Output

For each test case output a single integer indicating the maximum number of armies you could have at the end of the game. Output -1 if it is impossible to survive. Output each integer on its own line, with no spaces, and do not print any blank lines between answers. While it is possible for some inputs to generate unreasonably large answers, all judge inputs yield answers which will fit in a signed 64-bit integer.

 

Sample Input

8 4 6
22 6 10 14 0
4 3 3
0 0
6 9 7
0 0 11 0 7 0
0 0 0

Sample Output

-1
11
101

Source

 
解题:转自他人
 

题目大意

  介绍一款名叫CosmoCraft的双人回合制策略游戏(但网上找不到这种游戏),每一回合玩家可以:1。花费1元/个购买工人,2。花费1元/个购买士兵,3。花费1元/个购买兵营。每回合1个工人可以挣1元,但钱会在下一回合给你,每个兵营每一回合只能造一个工人或士兵,同样的每一回合建造的兵营将在下一回合起可用,每一回合造的工人或士兵当前回合起即可使用。游戏初始给你n个工人和k个兵营以及n元,游戏共t回合,前t-1回合每一回合将会有a[i]个敌方士兵回来攻击你,你必须能抵挡住每一回合的进攻,即在每一回合拥有比进攻你的敌方军队更多的士兵,每次战争士兵数多的一方取胜,并剩下双方交战士兵的差值的士兵数,而失败一方则一兵不剩,请你使用最优策略使得你在第t回合的反击中拥有最多的士兵,并输出最大值。

贪心策略:

  1。每一回合必须花完所有的钱。

  2。一个士兵不可能连续存在两回合以上(超过两回合说明他没有打仗,可以花1元在第一回合造工人,在第二回合用工人赚的钱造兵营,第三回合再用工人赚的钱和造的兵营造士兵)。

  3。每回合在保证生存的前提下,先造尽量多的工人,能造多少造多少,剩下的钱再造兵营。

  4。根据策略二,第i(1<=i<=t)回合的士兵只能由第i回合或第i-1回合造,若第i回合可以造出d[i]个士兵,就在第i回合造,否则需要第i-1回合的支援,第i-1回合最多支援第i回合k[i-1]-u[i-1]个士兵(在w[i-1]>k[i-1]的情况下)否则不能抵御第i回合的进攻。(k[i]代表第i回合的兵营数,n[i]代表第i回合的工人数,u[i]代表第i回合所需士兵数)。

 #include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <climits>
#include <vector>
#include <queue>
#include <cstdlib>
#include <string>
#include <set>
#include <stack>
#define LL long long
#define pii pair<int,int>
#define INF 0x3f3f3f3f
using namespace std;
const int maxn = ;
LL d[maxn],n,k,t,u,theMin;
int main() {
int i,j;
bool flag;
while(scanf("%I64d %I64d %I64d",&n,&k,&t),n||k||t){
for(i = ; i < t; i++) scanf("%I64d",d+i);
d[t] = ;
if(min(n,k) < d[]){puts("-1");continue;}
u = d[];
flag = false;
for(i = ; i < t; i++){
if(n + min(n,k) - u < d[i+]) {flag = true;break;}//利用上次剩余的
//造一些 还不够去死
theMin = min(n,k);//利用n个人和k个军营最多造的人数
k += n - theMin;//当n > k时,剩余的钱造军营
n += theMin - u;//造了theMin个人,然后去打仗,死了一些,最后剩余
if(d[i+] > k){//下一轮进攻军营不够用
n -= d[i+]-k;//用一些工人去换d[i+1]-k个人,
u = k;//已经死了这么多个,还要死k个才行
}else u = d[i+];
}
if(flag) {puts("-1");continue;}
if(t == ) printf("%I64d\n",u < k ? u:k);
else printf("%I64d\n",n);
}
return ;
}

BNUOJ 26223 CosmoCraft的更多相关文章

  1. BNUOJ 52325 Increasing or Decreasing 数位dp

    传送门:BNUOJ 52325 Increasing or Decreasing题意:求[l,r]非递增和非递减序列的个数思路:数位dp,dp[pos][pre][status] pos:处理到第几位 ...

  2. bnuoj 24251 Counting Pair

    一道简单的规律题,画出二维表将数字分别相加可以发现很明显的对称性 题目链接:http://www.bnuoj.com/v3/problem_show.php?pid=24251 #include< ...

  3. bnuoj 44359 快来买肉松饼

    http://www.bnuoj.com/contest/problem_show.php?pid=44359 快来买肉松饼 Time Limit: 5000 ms     Case Time Lim ...

  4. BNUOJ 1006 Primary Arithmetic

    Primary Arithmetic 来源:BNUOJ 1006http://www.bnuoj.com/v3/problem_show.php?pid=1006 当你在小学学习算数的时候,老师会教你 ...

  5. bnuoj 34985 Elegant String DP+矩阵快速幂

    题目链接:http://acm.bnu.edu.cn/bnuoj/problem_show.php?pid=34985 We define a kind of strings as elegant s ...

  6. bnuoj 25659 A Famous City (单调栈)

    http://www.bnuoj.com/bnuoj/problem_show.php?pid=25659 #include <iostream> #include <stdio.h ...

  7. bnuoj 25662 A Famous Grid (构图+BFS)

    http://www.bnuoj.com/bnuoj/problem_show.php?pid=25662 #include <iostream> #include <stdio.h ...

  8. bnuoj 4207 台风(模拟题)

    http://www.bnuoj.com/bnuoj/problem_show.php?pid=4207 [题意]:中文题,略 [题解]:模拟 [code]: #include <iostrea ...

  9. bnuoj 4208 Bubble sort

    http://www.bnuoj.com/bnuoj/problem_show.php?pid=4208 [题意]:如题,求冒泡排序遍历趟数 [题解]:这题开始2B了,先模拟TLE,然后想了一下,能不 ...

随机推荐

  1. POJ 3683 Priest John's Busiest Day

    看这个题目之前可以先看POJ2186复习一下强联通分量的分解 题意:给出N个开始时间和结束时间和持续时间三元组,持续时间可以在开始后或者结束前,问如何分配可以没有冲突. -----–我是分割线---- ...

  2. SIFT特征点检测与匹配

    SIFT的步骤如下: (1) 尺度空间极值检测(Scale-space Extrema Detection) 也就是在多尺度高斯差分(Difference of Gauss)空间中检测极值点(3x3x ...

  3. 【转载】WebConfigurationManager和ConfigurationManager

    原文链接 今天在写程序时偶然发现有的示例代码中是用WebConfigurationManager获取web.config中的配置信息的,因为之前一直都是用的ConfigurationManager,所 ...

  4. C语言中Static和Const关键字的的作用 -- 转

    static作用:“改变生命周期” 或者 “改变作用域” 程序的局部变量存在于(堆栈)中,全局变量存在于(静态区 )中,动态申请数据存在于( 堆)中. 1.作用于变量: 用static声明局部变量-- ...

  5. 224 Basic Calculator 基本计算器

    实现一个基本的计算器来计算一个简单的字符串表达式. 字符串表达式可以包含左括号 ( ,右括号),加号+ ,减号 -,非负整数和空格 . 假定所给的表达式语句总是正确有效的. 例如: "1 + ...

  6. SpringBoot_整合视图层技术

    SpringBoot整合视图层技术 在目前的企业级应用开发中,前后端分离是趋势,但是视图层技术还占有一席之地.Spring Boot对视图层技术提供了很好的支持,官方推荐使用的模板引擎是Thymele ...

  7. python itertools模块实现排列组合

    转自:https://blog.csdn.net/specter11235/article/details/71189486 一.笛卡尔积:itertools.product(*iterables[, ...

  8. vue热重载

    依据官网使用 webpack 的 Hot Module Replacement API,Vuex 支持在开发过程中热重载 mutation.module.action 和 getter.你也可以在 B ...

  9. mybatis 返回值

    转载: 在使用ibatis插入数据进数据库的时候,会用到一些sequence的数据,有些情况下,在插入完成之后还需要将sequence的值返回,然后才能进行下一步的操作.      使用ibatis的 ...

  10. CSS3 loading 和 文字颜色渐变

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...