博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Bayan 2012-2013 Elimination Round (ACM ICPC Rules, English statements) A. Old Peykan
阅读量:4568 次
发布时间:2019-06-08

本文共 2439 字,大约阅读时间需要 8 分钟。

A. Old Peykan
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

There are n cities in the country where the Old Peykan lives. These cities are located on a straight line, we'll denote them from left to right as c1, c2, ..., cn. The Old Peykan wants to travel from city c1 to cn using roads. There are (n - 1) one way roads, the i-th road goes from city ci to city ci + 1 and is di kilometers long.

The Old Peykan travels 1 kilometer in 1 hour and consumes 1 liter of fuel during this time.

Each city ci (except for the last city cn) has a supply of si liters of fuel which immediately transfers to the Old Peykan if it passes the city or stays in it. This supply refreshes instantly k hours after it transfers. The Old Peykan can stay in a city for a while and fill its fuel tank many times.

Initially (at time zero) the Old Peykan is at city c1 and s1 liters of fuel is transferred to it's empty tank from c1's supply. The Old Peykan's fuel tank capacity is unlimited. Old Peykan can not continue its travel if its tank is emptied strictly between two cities.

Find the minimum time the Old Peykan needs to reach city cn.

Input

The first line of the input contains two space-separated integers m and k (1 ≤ m, k ≤ 1000). The value m specifies the number of roads between cities which is equal to n - 1.

The next line contains m space-separated integers d1, d2, ..., dm (1 ≤ di ≤ 1000) and the following line contains m space-separated integers s1, s2, ..., sm (1 ≤ si ≤ 1000).

Output

In the only line of the output print a single integer — the minimum time required for The Old Peykan to reach city cn from city c1.

Sample test(s)
Input
4 6 1 2 5 2 2 3 3 4
Output
10
Input
2 3 5 6 5 5
Output
14
Note

In the second sample above, the Old Peykan stays in c1 for 3 hours.

 

 

贪心的感觉,看懂题意就简单了。

View Code
1 #include
2 #define maxn 1010 3 int d[maxn],s[maxn]; 4 int main() 5 { 6 int n,k; 7 int max,sum,ans; 8 while(~scanf("%d%d",&n,&k)) 9 {10 max=0;11 sum=0;12 ans=0;13 for(int i=0;i
=d[i]) sum=(sum+s[i]-d[i]);27 else 28 {29 do30 {31 sum+=max;32 33 count++;34 }while(sum+s[i]

转载于:https://www.cnblogs.com/1114250779boke/archive/2012/11/02/2750621.html

你可能感兴趣的文章
git 生成 公钥
查看>>
luoguP4841 城市规划
查看>>
爬虫到底是什么?
查看>>
收藏基本Java项目开发的书
查看>>
getResource()和getResourceAsStream()以及路径问题
查看>>
00080_泛型
查看>>
Java Map 键值对排序 按key排序和按Value排序
查看>>
[笔面] Java IO和网络编程相关面试
查看>>
Hive默认数据库修改配置
查看>>
面试之数据库面试题
查看>>
[转]基本Guava工具
查看>>
趁着没断网,赶快写总结
查看>>
Eclipse中取消按空格选中自动提示
查看>>
JAVA的Date类与Calendar类比较
查看>>
iOS开发拓展篇—音乐的播放
查看>>
Flink资料(1)-- Flink基础概念(Basic Concept)
查看>>
静态常量的问题
查看>>
cookie、 sessionStorage 、localStorage之间的区别和使用
查看>>
.Net(c#)加密解密之Aes和Des
查看>>
BZOJ 入门OJ 2004: [Noip模拟题]统计损失
查看>>