zoukankan      html  css  js  c++  java
  • 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(?)
    (Image from pixiv. ID: 21790160; Artist: socha)

    There are  plants in DreamGrid's garden arranged in a line. From west to east, the plants are numbered from 1 to  and the -th plant lies  meters to the east of DreamGrid's house. The -th plant has a defense value of  and a growth speed of . Initially,  for all .

    DreamGrid uses a robot to water the plants. The robot is in his house initially. In one step of watering, DreamGrid will choose a direction (east or west) and the robot moves exactly 1 meter along the direction. After moving, if the -th plant is at the robot's position, the robot will water the plant and  will be added to . Because the water in the robot is limited, at most  steps can be done.

    The defense value of the garden is defined as . DreamGrid needs your help to maximize the garden's defense value and win the game.

    Please note that:

    • Each time the robot MUST move before watering a plant;
    • It's OK for the robot to move more than  meters to the east away from the house, or move back into the house, or even move to the west of the house.

    Input

    There are multiple test cases. The first line of the input contains an integer , indicating the number of test cases. For each test case:

    The first line contains two integers  and  (), indicating the number of plants and the maximum number of steps the robot can take.

    The second line contains  integers  (), where  indicates the growth speed of the -th plant.

    It's guaranteed that the sum of  in all test cases will not exceed .

    Output

    For each test case output one line containing one integer, indicating the maximum defense value of the garden DreamGrid can get.

    Sample Input

    2
    4 8
    3 2 6 6
    3 9
    10 10 1
    

    Sample Output

    6
    4
    

    Hint

    In the explanation below, 'E' indicates that the robot moves exactly 1 meter to the east from his current position, and 'W' indicates that the robot moves exactly 1 meter to the west from his current position.

    For the first test case, a candidate direction sequence is {E, E, W, E, E, W, E, E}, so that we have  after the watering.

    For the second test case, a candidate direction sequence is {E, E, E, E, W, E, W, E, W}, so that we have  after the watering.

    用ans输出好像会炸long long ???

     1 #include<iostream>
     2 #include<cstring>
     3 #include<algorithm>
     4 #include<cmath>
     5 #include<string>
     6 #include<cstdio>
     7 #include<queue>
     8 #include<vector>
     9 typedef long long ll;
    10 #define maxn 100005
    11 using namespace std;
    12 
    13 ll a[maxn];
    14 ll book[maxn];
    15 ll n,m,ans,Min;
    16 bool Check(ll mid){
    17     ll tmp;
    18     if(mid==0) {
    19         Min=0;
    20         return true;
    21     }
    22     Min=0x3f3f3f3f3f3f3f3f;
    23     for(int i=1;i<=n+1;i++){
    24         book[i]=0;
    25     }
    26     for(int i=1;i<=n;i++){
    27         tmp=mid/a[i];
    28         if(a[i]*tmp<mid) tmp++;
    29         if(i==n&&book[i]>=tmp) break;
    30         book[i]++;
    31         if(book[i]<tmp){
    32             book[i+1]+=tmp-book[i];
    33             book[i]=tmp;
    34         }
    35         Min=min(Min,a[i]*book[i]);
    36     }
    37     ll sum=0;
    38     for(int i=1;i<=n+1;i++){
    39         sum+=book[i];
    40         if(sum>m) return false;
    41     }
    42     return true;
    43 }
    44 
    45 int main(){
    46     int T;
    47     while(~scanf("%d",&T)){
    48         while(T--){
    49             scanf("%lld %lld",&n,&m);
    50             for(int i=1;i<=n;i++){
    51                 scanf("%lld",&a[i]);
    52             }
    53             ll L,R,mid;
    54             L=0,R=(1LL<<60);
    55             while(L<=R){
    56                 mid=(L+R)/2;
    57                 if(Check(mid)){
    58                     L=mid+1;
    59                   //  ans=Min;
    60                 }
    61                 else{
    62                     R=mid-1;
    63                 }
    64             }
    65             printf("%lld
    ",L-1);
    66         }
    67     }
    68 }
    View Code
  • 相关阅读:
    比特币节点同步问题
    Vue用axios跨域访问数据
    vue之vue-cookies安装和使用说明
    vuejs目录结构启动项目安装nodejs命令,api配置信息思维导图版
    使用以太坊智能合约实现面向需要做凭证的企业服务帮助企业信息凭证区块链化
    将任意文件写入以太坊区块的方法,把重要事件,历史事件,人生轨迹加密记录到区块链永久封存
    Linux下几种重启Nginx的方式,找出nginx配置文件路径和测试配置文件是否正确
    php小数加减精度问题,比特币计算精度问题
    Fabric架构:抽象的逻辑架构与实际的运行时架构
    国外互联网大企业(flag)的涨薪方式
  • 原文地址:https://www.cnblogs.com/Fighting-sh/p/9939747.html
Copyright © 2011-2022 走看看