【ZOJ4062】Plants vs. Zombies(二分)

题意:有n个植物排成一排,标号为1-n,每株植物有自己的生长速度ai,每对植物浇一次水,该株植物就长高ai,

现在机器人从第0个格子出发,每次走一步,不能停留,每一步浇一次水,总共可以走m步,问最矮的植物最高是多少。

n<=1e6,sigma n<=1e7,0<=m<=1e12,1<=a[i]<=1e5

思路:7Y……你不死谁死

显然最小值最大可以二分,二分答案,最优的策略一定是从左到右依次左右横跳,直到当前格子不小于二分的值

一个致命的细节:最后一个如果在倒数第二个左右横跳的时候已经够了则不需要再走到了

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<string>
 4 #include<cmath>
 5 #include<iostream>
 6 #include<algorithm>
 7 #include<map>
 8 #include<set>
 9 #include<queue>
10 #include<vector>
11 using namespace std;
12 typedef long long ll;
13 typedef unsigned int uint;
14 typedef unsigned long long ull;
15 typedef pair<int,int> PII;
16 typedef vector<int> VI;
17 #define fi first
18 #define se second
19 #define MP make_pair
20 #define N      110000
21 #define M      51
22 #define MOD 1000000007
23 #define eps 1e-8
24 #define pi     acos(-1)
25 #define oo     1010000000
26
27 ll a[N],b[N],m;
28 int n;
29
30 int isok(ll k)
31 {
32     for(int i=1;i<=n+1;i++) b[i]=0;
33      ll t=0;
34     for(int i=1;i<=n;i++)
35     {
36         if(i==n&&b[n]>=k) continue;
37         t++;
38         if(t>m) return 0;
39         b[i]+=a[i];
40         if(b[i]<k)
41         {
42             ll tmp=(k-b[i])/a[i];
43             if(tmp*a[i]+b[i]<k) tmp++;
44             t=t+tmp*2;
45             if(t>m)    return 0;
46             b[i]+=a[i]*tmp;
47             b[i+1]+=a[i+1]*tmp;
48         }
49     }
50     if(t>m) return 0;
51     return 1;
52 }
53
54 int main()
55 {
56      int cas;
57      scanf("%d",&cas);
58      for(int v=1;v<=cas;v++)
59      {
60         scanf("%d%lld",&n,&m);
61         for(int i=1;i<=n;i++) scanf("%lld",&a[i]);
62         ll l=1;
63         ll r=1e17;
64         ll last=0;
65         while(l<=r)
66         {
67             ll mid=(l+r)/2;
68             if(isok(mid)){last=mid; l=mid+1;}
69              else r=mid-1;
70         }
71         printf("%lld\n",last);
72     }
73     return 0;
74 }
75     

原文地址:https://www.cnblogs.com/myx12345/p/10045609.html

时间: 2024-10-01 21:17:23

【ZOJ4062】Plants vs. Zombies(二分)的相关文章

zoj4062 Plants vs. Zombies 二分+模拟(贪心的思维)

题目传送门 题目大意:有n个植物排成一排,标号为1-n,每株植物有自己的生长速度ai,每对植物浇一次水,该株植物就长高ai,现在机器人从第0个格子出发,每次走一步,不能停留,每一步浇一次水,总共可以走m步,问最矮的植物最高是多少. 思路: 一般此类最小值最大问题都是二分,此题显然也是可以二分植物的高度的. 确定某一个高度后,也确定了每个植物需要浇几次水,而对于一株植物来说,应当尽可能的在这株植物和后面那个格子来回走,是这株植物迅速超过最低高度(这样的走法是最优的,因为可以想象,如果往后走很多步再

ZOJ 4062 - Plants vs. Zombies - [二分+贪心][2018 ACM-ICPC Asia Qingdao Regional Problem E]

题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=4062 题意: 现在在一条 $x$ 轴上玩植物大战僵尸,有 $n$ 个植物,编号为 $1 \sim n$,第 $i$ 个植物的位置在坐标 $i$,成长值为 $a_i$,初始防御值为 $d_i$. 现在有一辆小车从坐标 $0$ 出发,每次浇水操作必须是先走 $1$ 单位长度,然后再进行浇水,植物被浇一次水,防御值 $d_i+=a_i$. 现在知道,小车最多进行 $m

ZOJ 4062 Plants vs. Zombies(二分答案)

题目链接:Plants vs. Zombies 题意:从1到n每个位置一棵植物,植物每浇水一次,增加ai高度.人的初始位置为0,人每次能往左或往右走一步,走到哪个位置就浇水一次.求m步走完后最低高度的植物最大高度为多少. 题解:明显二分答案的题目.check时从左往右遍历,贪心思路:把该位置满足同时给后面减少浇水次数,策略是该位置和后一个位置左右横跳,注意最后一个位置的时候,如果满足就不需要再跳过去. 1 #include <cstdio> 2 #include <cstring>

Plants vs. Zombies(二分好题+思维)

Plants vs. Zombies http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5819 BaoBao and DreamGrid are playing the game Plants vs. Zombies. In the game, DreamGrid grows plants to defend his garden against BaoBao's zombies. Plants vs. Zombies(?)(

2018 青岛ICPC区域赛E ZOJ 4062 Plants vs. Zombie(二分答案)

Plants vs. Zombies Time Limit: 2 Seconds      Memory Limit: 65536 KB BaoBao and DreamGrid are playing the game Plants vs. Zombies. In the game, DreamGrid grows plants to defend his garden against BaoBao's zombies. Plants vs. Zombies(?) (Image from pi

uva 12452 Plants vs. Zombies HD SP (树DP)

Problem I: Plants vs. Zombies HD Super Pro Plants versus Zombies HD Super Pro is a game played not a grid, but on a connected graph G with no cycles (i.e., a tree). Zombies live on edges of the tree and chew through edges so that tree falls apart! Pl

UVA 12452 Plants vs. Zombies HD SP 树形dp(水

题目链接:点击打开链接 题意: 给定n个点的树[0,n) 开始所有边都是无色. 有3种操作: 1.选一个点染其相连的边 花费100 2.选一个点染其相连的2条边 花费175 3.选一个点染其相连的所有边 花费500 问: 染完所有边的最小花费.边可以重复染,点只能被操作一次. #include <string> #include <iostream> #include <cstdio> #include <algorithm> #include <cm

关于Plants versus Zombies游戏中的Pogo stick玩具

"植物大战僵尸"中看到一种骑着一个铁磁性的杆会跳的僵尸,第一次碰到这种僵尸居然被它给灭了! 后来增加豌豆火力,或者用磁铁蘑菇,才能轻松对付. 那么,那种用来辅助zombie提高攻击性能的杆到底是什么高级玩意呢? 我发现它居然是这个, 英文名称pogo stick !! 下面是图文介绍,就不翻译了. 安全性(安全第一): Are Pogo Sticks Safe? For some reason, many people seem to regard pogo sticks as rel

【HDU 3640】I, zombie (二分)

传送门 题目描述 The "endless" model in "I, zombie" of "Plants vs. Zombies" is my favourite.The aim of the game is to put down the zombies most reasonable in the right-most , to eat the brain protected by Plants in the left-most. To