Valera loves his garden, where n fruit trees grow.
This year he will enjoy a great harvest! On the i-th tree bi fruit grow, they will ripen on a day number ai. Unfortunately, the fruit on the tree get withered, so they can only be collected on day ai and day ai + 1 (all fruits that are not collected in these two days, become unfit to eat).
Valera is not very fast, but there are some positive points. Valera is ready to work every day. In one day, Valera can collect no more thanv fruits. The fruits may be either from the same tree, or from different ones. What is the maximum amount of fruit Valera can collect for all time, if he operates optimally well?
The first line contains two space-separated integers n and v (1 ≤ n, v ≤ 3000) — the number of fruit trees in the garden and the number of fruits that Valera can collect in a day.
Next n lines contain the description of trees in the garden. The i-th line contains two space-separated integers ai and bi (1 ≤ ai, bi ≤ 3000) — the day the fruits ripen on the i-th tree and the number of fruits on the i-th tree.
Print a single integer — the maximum number of fruit that Valera can collect.
2 3 1 5 2 3
8
5 10 3 20 2 20 1 20 4 20 5 20
60
In the first sample, in order to obtain the optimal answer, you should act as follows.
- On the first day collect 3 fruits from the 1-st tree.
- On the second day collect 1 fruit from the 2-nd tree and 2 fruits from the 1-st tree.
- On the third day collect the remaining fruits from the 2-nd tree.
In the second sample, you can only collect 60 fruits, the remaining fruit will simply wither.
题意:
给出 n,m(1 ~ 3000),代表有 n 颗树,每天最大的收获量是 m 。后给出 n 颗树,每颗树都有一个 a 和 b,代表果实成熟时间和总果实数,只有当天数在 a 或者 a + 1 的时候才能摘取果实。问最大的果实收获量是多少。
思路:
贪心。可能同一时间有多颗树成熟的可能,所以用数组 app 保存每天的总果实量,那么在某一天能取的果实数就是 t 与 t - 1 时候的果实。先去 t - 1 天的,若不够 m ,则再去 t 天取,每次都最大填充量去取就行了。错误犯在不应该是循环到 3000 天,应该是要到 3001 天。
AC:
#include <cstdio> #include <cstring> #include <algorithm> using namespace std; int app[3005]; int main() { memset(app, 0, sizeof(app)); int n, m; scanf("%d%d", &n, &m); for (int i = 1; i <= n; ++i) { int a, b; scanf("%d%d", &a, &b); app[a] += b; } int sum = 0; for (int i = 1; i <= 3001; ++i) { int left = m; if (app[i - 1] >= left) { sum += left; app[i - 1] -= left; left = 0; } else if (app[i - 1]) { left -= app[i - 1]; sum += app[i - 1]; app[i - 1] = 0; } if (left) { if (app[i] >= left) { sum += left; app[i] -= left; } else if (app[i]) { sum += app[i]; app[i] = 0; left = 0; } } } printf("%d\n", sum); return 0; }
相关推荐
在"VALERA"模板中,CSS可能包含了媒体查询(media queries),使得网页能根据不同的设备尺寸自动调整布局,确保在手机、平板和桌面电脑上都能提供良好的用户体验。CSS3引入了许多新特性,如过渡(transitions)、...
Valera and Z. Ghahramani, "Automatic Discovery of the Statistical Types of Variables in a Dataset", 34th International Conference on Machine Learning (ICML 2017). Sydney (Australia), 2017. 请使用以上...
Valera Cogut,A fast-paced guide to building impressive games and applications for Android devices with Unity 5.
Valera, M. F. Pradier, M. Lomeli and Z. Ghahramani, "General Latent Feature Model for Heterogeneous Datasets", 2017. Available on ArXiv: https://arxiv.org/abs/1706.03779. GLFM说明 GLFM是适用于异构数据...
Valera, M. F. Pradier, M. Lomeli and Z. Ghahramani, "General Latent Feature Model for Heterogeneous Datasets", 2017. Available on ArXiv: https://arxiv.org/abs/1706.03779. GLFM说明 GLFM是适用于异构数据...
如果"la_valera-master"是一个编程项目或者与技术相关,通常它可能代表一个Git仓库的主分支或者是某个软件或应用的名称。但目前这些都只是猜测。 为了提供有关IT的知识点,我需要更多的上下文。例如,如果"la_...
您还可以咨询Valera女王圣经 - 1960年 我们努力履行这些原则: 1 - 易于使用 2 - 快速答案 3 - 西班牙语的环境 4 - 简单的设计(更强调设计 - 更加强调内容) 请评论,不要忘记评价这个工具 有关更多圣经咨询工具,...
智能通知服务Smart Notification Service是一个PHP编写的库,用于根据业务逻辑代码中的事件来组织结构良好的...作者图书馆作者和开发人员:Valera Leontyev( )。执照BSD-3。 随意使用和修改代码,甚至用于商业目的。
Valera Round是我们正文文本的主要字体后语是我们标题的主要字体蒙特塞拉特粗体字是按钮和标语的主要字体。徽标和其他图像您可以在/ images目录中找到图像文件。颜色主要绿色:#00d188 灰色:#232c38 黑色文字:...
语言:English 选择要在圣经上查找的经文,右键单击并单击上下文菜单中的“ BuscaVersículo...”项。...版本/版本RVR1960-Reina Valera 1960 NVI-NuevaVersiónInternacional NIV-新国际版本KJV-King James版本
该程序可让您深入阅读和研究圣经(Reina-Valera 1960圣经)。 该程序需要事先安装Gambas。 打开控制台并添加存储库: sudo add-apt-repository ppa: gambas-team / gambas3 然后更新源并安装 Gambas3: sudo apt-get...
要在本地运行它,请克隆此存储库 ( https://github.com/valera-rozuvan/simple-express-js-with-db.git ),并运行以下命令: $ cd simple-express-js-with-db $ npm install $ npm start 然后,您可以在您选择的...
启动应用程序的图形环境高级,易于使用和快速,使用... Widget Clock - 它显示系统时间 Higgins - 另一个应用程序启动器 VisorRV1960 - (Biblia Reina-Valera 1960) 非常快速地访问诗句。 gbTerminal- 是一个基于 VT-10
球形牛高体积分数球包装库│ │ │ │ 基于Valera等人概述的先进前沿算法。 , 。 一家奶牛场的牛奶产量很低,所以这位农夫写信给当地的大学,要求学术界的帮助。 由理论物理学家领导的一支由多学科组成的教授团队...
Valera ” 在AAAI第三十三届人工智能会议(AAAI'19)的会议记录中 概述 ABDA是一种分层的概率模型,考虑了围绕随机变量(RV)交互作用的不确定性及其(参数)似然模型。 ABDA允许处理(统计数据类型和似然模型的)...
Valera)(1602) 荷兰语: BB:de Basisbijbel BGT:Gewone Taal中的de Bijbel GNB:Groot Nieuws Bijbel HB:Het Boek HSV:de Herziene Statenvertaling 注意:de Naardense Bijbel NBG51:德尼乌·
**ValerA(VK-1.2.148)** ValerA是vRt库所依赖的Vulkan版本,具体为1.2.148。Vulkan API是由Khronos Group开发的一种低级图形API,旨在提供高性能、跨平台的图形和计算能力。Vulkan 1.2.148是该API的一个更新版本...
这个补丁由作者valera3132创建,特别适用于Unity 4.3.4f1版本,这是一个重要的更新,因为它确保了开发者能够使用此工具集进行高效且稳定的游戏开发。 Unity 4.x系列是Unity引擎的一个关键阶段,它包含了大量对...