#P1726F. Late For Work (submissions are not allowed)

    ID: 827 Type: RemoteJudge 3000ms 256MiB Tried: 0 Accepted: 0 Difficulty: 10 Uploaded By: Tags>data structuresgreedyschedulesshortest paths*2900

Late For Work (submissions are not allowed)

Description

This problem was copied by the author from another online platform. Codeforces strongly condemns this action and therefore further submissions to this problem are not accepted.

Debajyoti has a very important meeting to attend and he is already very late. Harsh, his driver, needs to take Debajyoti to the destination for the meeting as fast as possible.

Harsh needs to pick up Debajyoti from his home and take him to the destination so that Debajyoti can attend the meeting in time. A straight road with nn traffic lights connects the home and the destination for the interview. The traffic lights are numbered in order from 11 to nn.

Each traffic light cycles after tt seconds. The ii-th traffic light is green\color{green}{\text{green}} (in which case Harsh can cross the traffic light) for the first gig_i seconds, and red\color{red}{\text{red}} (in which case Harsh must wait for the light to turn green\color{green}{\text{green}}) for the remaining (tgi)(t−g_i) seconds, after which the pattern repeats. Each light's cycle repeats indefinitely and initially, the ii-th light is cic_i seconds into its cycle (a light with ci=0c_i=0 has just turned green\color{green}{\text{green}}). In the case that Harsh arrives at a light at the same time it changes colour, he will obey the new colour. Formally, the ii-th traffic light is green\color{green}{\text{green}} from [0,gi)[0,g_i) and red\color{red}{\text{red}} from [gi,t)[g_i,t) (after which it repeats the cycle). The ii-th traffic light is initially at the cic_i-th second of its cycle.

From the ii-th traffic light, exactly did_i seconds are required to travel to the next traffic light (that is to the (i+1)(i+1)-th light). Debajyoti's home is located just before the first light and Debajyoti drops for the interview as soon as he passes the nn-th light. In other words, no time is required to reach the first light from Debajyoti's home or to reach the interview centre from the nn-th light.

Harsh does not know how much longer it will take for Debajyoti to get ready. While waiting, he wonders what is the minimum possible amount of time he will spend driving provided he starts the moment Debajyoti arrives, which can be anywhere between 00 to \infty seconds from now. Can you tell Harsh the minimum possible amount of time he needs to spend on the road?

Please note that Harsh can only start or stop driving at integer moments of time.

The first line of input will contain two integers, nn and tt (2n21052 \le n \le 2 \cdot 10^5, 2t1092 \le t \le 10^9) denoting the number of traffic lights and the cycle length of the traffic lights respectively.

nn lines of input follow. The ii-th line will contain two integers gig_i and cic_i (1gi<t1 \le g_i < t, 0ci<t0 \le c_i < t) describing the ii-th traffic light.

The following line of input contains n1n−1 integers d1,d2,,dn1d_1, d_2, \ldots, d_{n-1} (0di1090 \le d_i \le 10^9) — the time taken to travel from the ii-th to the (i+1)(i+1)-th traffic light.

Output a single integer — the minimum possible amount of time Harsh will spend driving.

Input

The first line of input will contain two integers, nn and tt (2n21052 \le n \le 2 \cdot 10^5, 2t1092 \le t \le 10^9) denoting the number of traffic lights and the cycle length of the traffic lights respectively.

nn lines of input follow. The ii-th line will contain two integers gig_i and cic_i (1gi<t1 \le g_i < t, 0ci<t0 \le c_i < t) describing the ii-th traffic light.

The following line of input contains n1n−1 integers d1,d2,,dn1d_1, d_2, \ldots, d_{n-1} (0di1090 \le d_i \le 10^9) — the time taken to travel from the ii-th to the (i+1)(i+1)-th traffic light.

Output

Output a single integer — the minimum possible amount of time Harsh will spend driving.

Sample Input 1

5 10
4 2
7 3
3 6
5 2
8 0
1 2 3 4

Sample Output 1

11

Sample Input 2

6 9
5 3
5 5
7 0
5 8
7 7
6 6
0 0 0 0 0

Sample Output 2

3

Note

In the first example, Harsh can do the following:

  • Initially, the 55 traffic lights are at the following seconds in their cycle: {2,3,6,2,0}\{2,3,6,2,0\}.
  • An optimal time for Harsh to start is if Debajyoti arrives after 11 second. Note that this 11 second will not be counted in the final answer.
  • The lights will be now at {3,4,7,3,1}\{3,4,7,3,1\}, so Harsh can drive from the 11-st light to the 22-nd light, which requires 11 second to travel.
  • The lights are now at {4,5,8,4,2}\{4,5,8,4,2\}, so Harsh can continue driving, without stopping, to the 33-rd light, which requires 22 seconds to travel.
  • The lights are now at {6,7,0,6,4}\{6,7,0,6,4\}, so Harsh continues to the 44-th light, which requires 33 seconds to travel.
  • The lights are now at {9,0,3,9,7}\{9,0,3,9,7\}. Harsh must wait 11 second for the 44-th light to turn green before going to the 55-th light, which requires 44 seconds to travel.
  • The lights are now at {4,5,8,4,2}\{4,5,8,4,2\}, so Harsh can continue traveling, without stopping, to the meeting destination. The total time that Harsh had to drive for is 1+2+3+1+4=111+2+3+1+4=11 seconds.

In the second example, Harsh can do the following:

  • Initially, the 66 traffic lights are at the following seconds in their cycle: {3,5,0,8,7,6}\{3,5,0,8,7,6\}.
  • An optimal time for Harsh to start is if Debajyoti arrives after 11 second. Note that this 11 second will not be counted in the final answer.
  • The lights will be now at {4,6,1,0,8,7}\{4,6,1,0,8,7\}, so Harsh can drive from the 11-st light to the 22-nd light, which requires 00 seconds to travel.
  • The lights are still at {4,6,1,0,8,7}\{4,6,1,0,8,7\}. Harsh must wait 33 seconds for the 22-nd light to turn green, before going to the 33-rd light, which requires 00 seconds to travel.
  • The lights are now at {7,0,4,3,2,1}\{7,0,4,3,2,1\}, so Harsh continues to the 44-th light, which requires 00 seconds to travel.
  • The lights are still at {7,0,4,3,2,1}\{7,0,4,3,2,1\}, so Harsh continues to the 55-th light, which requires 00 seconds to travel.
  • The lights are still at {7,0,4,3,2,1}\{7,0,4,3,2,1\}, so Harsh continues to the 66-th light, which requires 00 seconds to travel.
  • The lights are still at {7,0,4,3,2,1}\{7,0,4,3,2,1\}, so Harsh can continue traveling, without stopping, to the meeting destination. The total time that Harsh had to drive for is 0+3+0+0+0=30+3+0+0+0=3 seconds.