1998. The old Padawan
Time limit: 0.5 second
Memory limit: 64 MB
Memory limit: 64 MB
Yoda: Use the Force. Yes. Now, the stone. Feel it. Concentrate!
Luke Skywalker is having exhausting practice at a God-forsaken planet Dagoba. One of his main difficulties is navigating cumbersome objects using the Power. Luke’s task is to hold several stones in the air simultaneously. It takes complete concentration and attentiveness but the fellow keeps getting distracted.
Luke chose a certain order of stones and he lifts them, one by one, strictly following the order. Each second Luke raises a stone in the air. However, if he gets distracted during this second, he cannot lift the stone. Moreover, he drops some stones he had picked before. The stones fall in the order that is reverse to the order they were raised. They fall until the total weight of the fallen stones exceeds k kilograms or there are no more stones to fall down.
The task is considered complete at the moment when Luke gets all of the stones in the air. Luke is good at divination and he can foresee all moments he will get distracted at. Now he wants to understand how much time he is going to need to complete the exercise and move on.
Input
The first line contains three integers: n is the total number of stones, m is the number of moments when Luke gets distracted and k (1 ≤ n, m ≤ 105, 1 ≤ k ≤ 109). Next n lines contain the stones’ weights wi (in kilograms) in the order Luke is going to raise them (1 ≤wi ≤ 104). Next m lines contain moments ti, when Luke gets distracted by some events (1 ≤ ti ≤ 109, ti < ti+1).
Output
Print a single integer — the number of seconds young Skywalker needs to complete the exercise.
Sample
5 1 4 1 2 3 4 5 4 |
8 |
Hint
In the first three seconds Luke raises stones that weight 1, 2 and 3 kilograms. On the fourth second he gets distracted and drops stones that weight 2 and 3 kilograms. During the next four seconds he raises all the four stones off the ground and finishes the task.
题意:
给出 n(1 ~ 10 ^ 5),m(1 ~ 10 ^ 5),k(1 ~ 10 ^ 9),代表给出 N 个球,后有 M 个停顿时间,每秒钟都会往上抛一个球,如果遇到的是停顿的时间,则不会往上抛球,但是会有球下降下来,直到下降下来的球的总重量大于 k,或者全部都掉下来了才继续抛球。输出过多少时间才会把所有的球给跑到天空中。
思路:
尺取法预处理当每个球不抛的时候会退回哪一个位置。后循环停顿的时间,维护该时间所需要抛的球是哪个,如果该停顿时间距离上一次停顿时间依然没有抛完所有的球的话,则退回刚刚预处理所需要抛球的位置,不断这样判断,直到判断到能完全抛完所有球为止。如果所有的停顿时间都停顿完了依然没有抛完的话,则最后的总时间还要加上剩下球的个数。
比赛的时候很烦躁,明明一开始就会做,但是被边界问题处理得很烦,后来也没有心思去 debug 了,以后一定要改进,切忌不能烦躁不能放弃,细心处理好边界问题。
AC:
#include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int MAX = 100005; int num[MAX], stop[MAX], ans[MAX]; int main() { int n, m, k; scanf("%d%d%d", &n, &m, &k); for (int i = 1; i <= n; ++i) { scanf("%d", &num[i]); } int sum = 0, from = 1, t = 1; while (sum <= k && t <= n) { ans[t] = from; sum += num[t]; ++t; } for (t; t <= n; ++t) { while (sum - num[from] > k && from < t - 1) { sum -= num[from]; ++from; } ans[t] = from; sum += num[t]; } stop[0] = 0; for (int i = 1; i <= m; ++i) scanf("%d", &stop[i]); int sum_time = 0, now = 1; for (int i = 1; i <= m; ++i) { int need = n - now + 1; if (stop[i] - stop[i - 1] > need) { sum_time = stop[i - 1] + need; now = n; break; } else { now = now + stop[i] - stop[i - 1] - 1; now = ans[now]; sum_time = stop[i]; } } if (now != n) printf("%d\n", sum_time + (n - now + 1)); else printf("%d\n", sum_time); return 0; }
相关推荐
当前,Padawan.vim提供了基于文档注释和方法签名的方法和类的基本完成。 单击下面的图像,观看有关Padawan.vim已经可以执行的操作的简短视频。 要求 Padawan.vim要求: PHP 5.5以上 作曲家 带+ python的Vim 安装 ...
基于 DanF 的 PS2 控制器 PADAWAN 草图,该草图旨在允许使用 PS2、PS3、PS4 或 XBox 360 控制器,具体取决于草图开始时设置的编译选项。 使用 Arduino Mega ADK、Padawan Shield、AZIO Class 1 蓝牙 USB Dongle、PS...
就像这样: host$ git clone https://github.com/Dlimaun/padawan-vagrant.githost$ cd padawan-vagrant`host$ vagrant up您的虚拟机正在运行! \ o /让我们通过以下方式访问它: host$ vagrant ssh安装了什么没有...
"Padawan:帕达万项目"是一个专注于技术职业转变者的教育平台,致力于连接有经验的导师与正在转型为技术行业的人士。这个项目的核心在于通过实时直播的方式,让学员能够直接观察并互动交流与导师,从而获取宝贵的实战...
使用Padawan Framework,新手开发者可以专注于网页的内容和逻辑,而不是花费大量时间在基础布局和样式设置上。框架的结构化方法可以帮助他们建立良好的编码习惯,同时减少错误和重复工作。 为了充分利用Padawan ...
在IT行业中,编程练习是提升技能的关键途径,而“Padawan-learning”项目就是一个专注于JavaScript编程学习的资源库。这个项目的核心目标是通过一系列的编码练习,帮助开发者尤其是初学者掌握和深化JavaScript语言的...
"Padawan-Network" 是一个基于 Rails 和 Android 开发的社交网络项目,旨在提供一个平台让用户可以交流互动。Rails 是一种流行的开源 web 应用框架,由 Ruby 语言编写,而 Android 是谷歌主导的移动操作系统,主要...
"Padawan Calories Calculator"是一个基于JavaScript的项目,用于计算建筑工作中的热量消耗。这个计算器旨在帮助建筑工人或相关人员了解在不同工作强度下他们所燃烧的卡路里。下面将详细介绍这个项目的实施步骤、...
” - 尤达Padawan项目是一个极简的教师构建程序,它为人们提供了必要的技能以用作javascript开发人员。 这是通过指导,自我学习,解决问题和建立应用程序来实现的。为什么? 除非应用知识,否则知识是无用的。 Web...
Symfony2插件 ...插件名称为mkusher/padawan-symfony ,因此您应使用此名称调用plugin add 。 跑步 到目前为止,更新服务映射的唯一方法是Generate Index 。 之后,您将能够获取服务列表和类型检测。
$ git clone https://github.com/DanielArturoAlejoAlvarez/Padawan.git [NAME APP] $ npm install $ npm start 请按照以下步骤操作,一切顺利! 重要: 编码 乌尔斯 ... const auth = require ( '../middlewares/...
标题中的"padawan9002.github.io"很可能是一个个人或团队在GitHub托管的网站,它可能是一个开源项目,展示了JavaScript编程技术的应用。这个标题暗示了这个项目虽然看似不起眼,但其实蕴含了强大的功能和潜力,是...
《React ES6 Padawan to Jedi Book》是一本专注于教授如何使用ES6和Babel构建React应用的教程。这本书分为简单版和完整版,适合不同层次的学习者,旨在帮助初学者从"Padawan"(学徒)成长为"Jedi"(大师)。在了解这...
标题中的“minhaListaEquipe01”是一个项目名称,显然与一个名为“Padawan HBSIS Ambev培训计划”的2019年度活动有关。这个项目专注于创建一个应用程序,目的是帮助用户准备市场购物清单,特别强调了移动平台,尤其...
Tableau JS API 101 是一个初学者教程,旨在帮助开发者掌握如何使用 Tableau 的 JavaScript API 进行数据可视化和交互式仪表板的构建。... Tableau JS API 是 Tableau 提供的一个强大工具,它允许开发者在自己的网页...
游戏《 Padawan Adventures》是一个迷宫形状的游戏,角色必须找到进入下一个世界的正确方法,因为他必须收集每张地图上存在的所有硬币(⍟),并收集他得到的所有硬币。通往下一个世界的门票。 在每个世界中,除了...
> mix deps.getnewb |> iex -S mix "use it Padawan"newb |> AST quote do - discover code patternsnewb |> require Loggernewb |> Logger.debug("debug message: Make it meaningful")newb |> alias :dbg, as: Dbg...
该模块还出现在web-padawan / awesome-lit-html中。 确保检查回购以获取受lit-html启发的令人敬畏的事情。 :thumbs_up: :hundred_points: 目录特征前提条件使用模板文字编写HTML时启用语法突出显示Visual Studio程...
Web开发人员全栈JS,对UX设计充满热情 :artist_palette:介绍 :studio_microphone: :rocket: Padawan Web开发人员,喜欢设计和开发各种Web项目! 主要研究一种奇怪的语言,即Javascript,最近又发现与Typescript...
年轻的padawan,您的任务是开发此目标网页! 以下是一些准则: 整个平台必须使用前端技术进行开发; 请记住,该页面将被20万人访问... 我们有几个用户个人资料。 跨浏览器很重要! ;) 您可以自由开发最适合自己的...