P9889 [ICPC2018 Qingdao R] Plants vs. Zombies 题解 二分+贪心

[ICPC2018 Qingdao R] Plants vs. Zombies

传送门

题面翻译

给定 n n n 个植物和 m m m 的步数限制,每个植物在位置 1 … n 1\dots n 1n 上。你初始时在位置 0 0 0,每次可以移动到相邻的位置上。

每次设你走完一步后到达的位置是 i i i,则会使得这个位置的植物的高度增加 a i a_i ai。设 d i d_i di 为走完 m m m 步后位置 i i i 的植物高度,求出一个最优的走法使得 min ⁡ 1 ≤ i ≤ n d i \min\limits_{1 \le i \le n} d_i 1inmindi 最大。

2 ≤ n ≤ 1 0 5 2\leq n\leq 10 ^ 5 2n105 0 ≤ m ≤ 1 0 12 0\leq m\leq 10 ^ {12} 0m1012 1 ≤ a i ≤ 1 0 5 1\leq a_i\leq 10 ^ 5 1ai105 ∑ n ≤ 1 0 6 \sum n\leq 10 ^ 6 n106

题目描述

BaoBao and DreamGrid are playing the game Plants vs. Zombies \textit{Plants vs. Zombies} 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) \textit{Plants vs. Zombies(?)} \\ \textit{(Image from pixiv. ID: 21790160; Artist: socha)} Plants vs. Zombies(?)(Image from pixiv. ID: 21790160; Artist: socha)

There are n n n plants in DreamGrid’s garden arranged in a line. From west to east, the plants are numbered from 1 to n n n and the i i i-th plant lies i i i meters to the east of DreamGrid’s house. The i i i-th plant has a defense value of d i d_i di and a growth speed of a i a_i ai. Initially, d i = 0 d_i = 0 di=0 for all 1 ≤ i ≤ n 1 \le i \le n 1in.

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 i i i-th plant is at the robot’s position, the robot will water the plant and a i a_i ai will be added to d i d_i di. Because the water in the robot is limited, at most m m m steps can be done.

The defense value of the garden is defined as min ⁡ { d i ∣ 1 ≤ i ≤ n } \min\{d_i | 1 \le i \le n\} min{di∣1in}. DreamGrid needs your help to maximize the garden’s defense value and win the game.

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

输入格式

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

The first line contains two integers n n n and m m m ( 2 ≤ n ≤ 1 0 5 2 \le n \le 10^5 2n105, 0 ≤ m ≤ 1 0 12 0 \le m \le 10^{12} 0m1012), indicating the number of plants and the maximum number of steps the robot can take.

The second line contains n n n integers a 1 , a 2 , . . . , a n a_1, a_2, ... , a_n a1,a2,...,an ( 1 ≤ a i ≤ 1 0 5 1 \le a_i \le 10^5 1ai105), where a i a_i ai indicates the growth speed of the i i i-th plant.

It’s guaranteed that the sum of n n n in all test cases will not exceed 1 0 6 10^6 106.

输出格式

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

样例 #1

样例输入 #1

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

样例输出 #1

6
4

提示

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 } \{E, E, W, E, E, W, E, E\} {E,E,W,E,E,W,E,E}, so that we have d = { 6 , 6 , 12 , 6 } d = \{6,6,12,6\} d={6,6,12,6} after the watering.

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

注明

以上来自洛谷。 以上来自洛谷。 以上来自洛谷。

解题思路

题目中让我们求最小值最大,并具有单调性,所以可以二分答案。对于二分答案,这里不细讲。

以下为验证函数的写法:

  • 先让一个数组 T o n g Tong Tong 满足 T o n g i × d i ≥ m i d d l e Tong_i ×d_i \ge middle Tongi×dimiddle
  • 对于 T o n g i ≥ 1 Tong_i \ge 1 Tongi1 都需要在 T o n g i Tong_i Tongi T o n g i + 1 Tong_{i+1} Tongi+1 之间走 2 × T o n g i − 1 2\times Tong_i −1 2×Tongi1 次才能满足条件,而 T o n g i + 1 Tong_{i+1} Tongi+1 项也要去掉 T o n g i − 1 Tong_i −1 Tongi1 次;
  • 若走的总次数 C o u n t Count Count 满足 C o u n t ≥ m Count \ge m Countm了,就返回假,否则为真。

附上贪心证明(Ta人博客,尽量点赞)。

AC Code

#include<bits/stdc++.h>
using namespace std;
char buf[1048576], *p1, *p2;
template<typename T>inline void Super_Quick_Read(T &x) {bool f = 1;x = 0;char ch = (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1 << 20, stdin), p1 == p2) ? 0 : *p1++);while (ch < '0' || ch > '9') {if (ch == '-') f = !f;ch = (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1 << 20, stdin), p1 == p2) ? 0 : *p1++);}while (ch >= '0' && ch <= '9')x = (x << 1) + (x << 3) + (ch ^ 48), ch = (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1 << 20, stdin), p1 == p2) ? 0 : *p1++);x = (f ? x : -x);return;
}
template<typename T>inline void Quick_Write(T x) {if (x < 0) putchar('-'), x = -x;if (x > 9) Quick_Write(x / 10);putchar(x % 10 + '0');return;
}
int n;
long long m, a[100001];
long long Tong[100001];
long long Answer;
inline bool Check(long long x) {long long _count = 0;for (register int i = 1; i <= n; ++i) Tong[i] = ceil(1.0 * x / a[i]);for (register int i = 1; i <= n; ++i) {if (Tong[i] <= 0) {++_count;continue;}_count += Tong[i] * 2 - 1, Tong[i + 1] -= Tong[i] - 1;if (_count > m) return 0;}return 1;
}
signed main() {int T;Super_Quick_Read(T);while (T--) {Super_Quick_Read(n), Super_Quick_Read(m);for (register int i = 1; i <= n; ++i) Super_Quick_Read(a[i]);long long left = 0, right = LONG_LONG_MAX, middle;while (left <= right) {middle = (left + right) >> 1;if (Check(middle)) left = middle + 1, Answer = middle;else right = middle - 1;}Quick_Write(Answer), puts("");}return 0;
}

知道复制代码会 CE,为什么不自己写呢?

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/728449.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

数学建模【模糊综合评价分析】

一、模糊综合评价分析简介 提到模糊综合评价分析&#xff0c;就先得知道模糊数学。1965年美国控制论学家L.A.Zadeh发表的论文“Fuzzy sets”标志着模糊数学的诞生。 模糊数学又称Fuzzy数学&#xff0c;是研究和处理模糊性现象的一种数学理论和方法。模糊性数学发展的主流是在…

小程序API能力集成指南——配网能力API汇总(一)

ty.playnet.autoConnectToAp 自动连接wifi 需引入PlayNetKit&#xff0c;且在>1.1.0版本才可使用 请求参数 Object object 属性类型默认值必填说明ssidstring是配网之后&#xff0c;设备工作 Wi-Fi 的名称pwdstring是配网之后&#xff0c;设备工作 Wi-Fi 的密码completef…

git之系列

git之常用ignore 。 git之常用命令 。 git之reflog分析 。 git之添加和删除全局配置 。 git之如何恢复代码到之前版本 。 git之merge和rebase 。 git之如何合并部分提交 。 git之本地有未提交代码如何切换分支 。 Git通过tag创建分支并推送到远程 。

大语言模型系列-GPT-3

文章目录 前言一、GTP-3的改进二、GPT-3的表现总结 前言 《Language Models are Few-Shot Learners&#xff0c;2020》 前文提到GPT-2进一步提升了模型的zero shot能力&#xff0c;但是在一些任务中仍可能会“胡说”&#xff0c;GTP-3基于此提出了few shot&#xff0c;即预测…

7-22 试试手气(Python)

我们知道一个骰子有 6 个面&#xff0c;分别刻了 1 到 6 个点。下面给你 6 个骰子的初始状态&#xff0c;即它们朝上一面的点数&#xff0c;让你一把抓起摇出另一套结果。假设你摇骰子的手段特别精妙&#xff0c;每次摇出的结果都满足以下两个条件&#xff1a; 1、每个骰子摇出…

ZYNQ--AXI_DMA使用

文章目录 手册阅读典型连接图SG模式关闭时的寄存器地址SG模式开启时的寄存器地址BD设计PS端设计对于DMA寄存器的控制对DMA进行初始化 手册阅读 典型连接图 SG模式关闭时的寄存器地址 SG模式开启时的寄存器地址 关于各个bit的功能&#xff0c;具体看数据手册。 BD设计 通过PL侧…

sql高级

sql高级 SQL SELECT TOP 子句 SELECT TOP 子句用于规定要返回的记录的数目。 SELECT TOP 子句对于拥有数千条记录的大型表来说&#xff0c;是非常有用的。 **注意:**并非所有的数据库系统都支持 SELECT TOP 语句。 MySQL 支持 LIMIT 语句来选取指定的条数数据&#xff0c; O…

Qt + mqtt对接阿里云平台(一)

一、阿里云平台 官网&#xff1a;点击跳转 二、创建产品与设备 1、“公共实例” 2、“设备管理”->“产品”->“创建产品” 3、“产品名称”->“自定义品类”->"确认" 4、“前往添加” 5、“添加设备” 6、摄入DeviceName和备注名称 7、"前往查…

每周一算法:A*(A Star)算法

八数码难题 题目描述 在 3 3 3\times 3 33 的棋盘上&#xff0c;摆有八个棋子&#xff0c;每个棋子上标有 1 1 1 至 8 8 8 的某一数字。棋盘中留有一个空格&#xff0c;空格用 0 0 0 来表示。空格周围的棋子可以移到空格中。要求解的问题是&#xff1a;给出一种初始布局…

文心一言 VS 讯飞星火 VS chatgpt (210)-- 算法导论16.1 1题

一、根据递归式(16.2)为活动选择问题设计一个动态规划算法。算法应该按前文定义计算最大兼容活动集的大小 c[i,j]并生成最大集本身。假定输入的活动已按公式(16.1)排好序。比较你的算法和GREEDY-ACTIVITY-SELECTOR的运行时间。如何要写代码&#xff0c;请用go语言。 文心一言&…

excel统计分析——裂区设计

参考资料&#xff1a;生物统计学 裂区设计&#xff08;split-plot design&#xff09;是安排多因素试验的一种方法&#xff0c;裂区设计对因素的安排有主次之分&#xff0c;适用于安排对不同因素试验精度要求不一的试验。 裂区设计时&#xff0c;先按第一因素的处理数划分主区&…

独立站营销新纪元:AI与大数据塑造个性化体验的未来

随着全球互联网的深入发展和数字化转型的不断推进&#xff0c;作为品牌建设和市场营销的重要载体&#xff0c;独立站将迎来新的发展机遇。新技术的涌现&#xff0c;特别是人工智能和大数据等技术的广泛应用&#xff0c;为独立站带来了前所未有的机遇与挑战。本文Nox聚星将和大家…

ios xcode 15 PrivacyInfo.xcprivacy 隐私清单

1.需要升级mac os系统到13 兼容 xcode 15.1 2.升级mac os系统到14 兼容 xcode 15.3 3.选择 New File 4.直接搜索 privacy 能看到有个App Privacy 5.右击Add Row 7.直接选 Label Types 8.选中继续添加就能添加你的隐私清单了 苹果官网文档Describing data use in privacy man…

Windows安装SSH教程:进阶配置选项详解

当我们谈论在Windows上安装SSH时,我们通常会关注基本的安装步骤和客户端/服务器的设置。然而,SSH的配置远不止于此。在本文中,我们将深入探讨一些高级的SSH配置选项,这些选项可以帮助您更好地定制SSH体验,提高安全性和性能。 一、SSH配置文件的详解 在Windows上,SSH的配…

Java二阶知识点总结(四)常见算法的基本结构

一、二叉树的DFS&#xff08;深度优先算法&#xff09; 1、递归 基本递归&#xff08;以中序遍历为例&#xff09; public List<Integer> inorderTraversal(TreeNode root) {List<Integer> resultnew ArrayList<>();order(root,result);return result;}pub…

从零开始学HCIA之IPv6基础05

1、IPv6地址支持无状态自动配置方式&#xff0c;主机通过某种机制获取网络前缀信息&#xff0c;然后主机自己生成地址的接口标识部分。 2、路由器发现功能是IPv6地址自动配置功能的基础&#xff0c;主要通过两种消息实现。 &#xff08;1&#xff09; 路由器通告&#xff08;…

springboot247人事管理系统

人事管理系统的设计与实现 摘 要 传统信息的管理大部分依赖于管理人员的手工登记与管理&#xff0c;然而&#xff0c;随着近些年信息技术的迅猛发展&#xff0c;让许多比较老套的信息管理模式进行了更新迭代&#xff0c;问卷信息因为其管理内容繁杂&#xff0c;管理数量繁多导…

webpack5基础--09_处理其他资源

处理其他资源 开发中可能还存在一些其他资源&#xff0c;如音视频等&#xff0c;我们也一起处理了 1. 配置 const path require("path");module.exports {entry: "./src/main.js",output: {path: path.resolve(__dirname, "dist"),filename…

Redis基本使用和基础知识整理

Redis是做什么的&#xff1f; Redis是一个开源&#xff0c;内存存储的数据结构服务器&#xff0c;可用作数据库&#xff0c;高速缓存和消息队列。Redis将数据储存在内存当中 内存的特点 易失性&#xff08;在断电之后数据就没有了&#xff09;进行读取数据等IO操作的速度要比…

C语言进阶—表达式求值

隐式类型转换&#xff1a; C 的整型算术运算总是至少以缺省(默认)整型类型的精度来进行的。 为了获得这个精度&#xff0c;表达式中的字符和短整型操作数在使用之前被转换为普通整型&#xff0c;这种转换称为整型提升。 #include <stdio.h>int main() {char c 1;printf(…