Codeforces Bayan 2012-2013 Elimination Round / 241A Old Peykan (贪心)

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.


贪心思路:在s[i]最大的城市加最多的油,详见代码。


完整代码:

/*30ms,0KB*/

#include<cstdio>
#include<cmath>
#include<algorithm>
using namespace std;

int d[1001], s[1001];

int main(void)
{
	int m, k, count = 0, oil = 0, temp, maxn = 0;
	scanf("%d%d", &m, &k);
	for (int i = 0; i < m; ++i)
	{
		scanf("%d", &d[i]);
		count += d[i];
	}
	for (int i = 0; i < m; ++i)
		scanf("%d", &s[i]);
	for (int i = 0; i < m; ++i)
	{
		oil += s[i];
		maxn = max(maxn, s[i]);
		if (d[i] > oil)
		{
			temp = ceil((double)(d[i] - oil) / maxn);
			count += k * temp;
			oil += maxn * temp;
		}
		oil -= d[i];
	}
	printf("%d", count);
	return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值