CF301B.Yaroslav and Time
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Yaroslav is playing a game called "Time". The game has a timer showing the lifespan he's got left. As soon as the timer shows 0, Yaroslav's character dies and the game ends. Also, the game has n clock stations, station number i is at point (xi,yi) of the plane. As the player visits station number i , he increases the current time on his timer by ai . The stations are for one-time use only, so if the player visits some station another time, the time on his timer won't grow.
A player spends d⋅dist time units to move between stations, where dist is the distance the player has covered and d is some constant. The distance between stations i and j is determined as ∣xi−xj∣+∣yi−yj∣ .
Initially, the player is at station number 1 , and the player has strictly more than zero and strictly less than one units of time. At station number 1 one unit of money can increase the time on the timer by one time unit (you can buy only integer number of time units).
Now Yaroslav is wondering, how much money he needs to get to station n . Help Yaroslav. Consider the time to buy and to increase the timer value negligibly small.
输入格式
The first line contains integers n and d (3<=n<=100,103<=d<=105) — the number of stations and the constant from the statement.
The second line contains n−2 integers: a2,a3,...,an−1 (1<=ai<=103) . The next n lines contain the coordinates of the stations. The i -th of them contains two integers xi , yi ( - 100<=xi,yi<=100) .
It is guaranteed that no two stations are located at the same point.
输出格式
In a single line print an integer — the answer to the problem.
输入输出样例
输入#1
3 1000 1000 0 0 0 1 0 3
输出#1
2000
输入#2
3 1000 1000 1 0 1 1 1 2
输出#2
1000