C - Sentou 解説 /

実行時間制限: 2 sec / メモリ制限: 256 MB

配点 : 300300

問題文

とある銭湯には、スイッチを押すと TT 秒間お湯が出るシャワーがあります。

なお、お湯が出ているときにスイッチを押すと、そのタイミングから TT 秒間お湯が出つづけます。 お湯の出る時間が TT 秒間延長されるわけではないことに注意してください。

このシャワーの前を、NN 人の人がスイッチを押して通り過ぎていきます。 ii 人目の人は、11 人目の人がスイッチを押した tit_i 秒後にスイッチを押します。

お湯が出る時間の総和は何秒かを求めてください。

制約

  • 1N200,0001 ≦ N ≦ 200,000
  • 1T1091 ≦ T ≦ 10^9
  • 0=t1<t2<t3<,...,<tN1<tN1090 = t_1 < t_2 < t_3 < , ..., < t_{N-1} < t_N ≦ 10^9
  • T,tiT, t_i はすべて整数である

入力

入力は以下の形式で標準入力から与えられる。

NN TT
t1t_1 t2t_2 ... tNt_N

出力

お湯が出る時間の総和を XX 秒として、XX を出力する。


入力例 1Copy

Copy
2 4
0 3

出力例 1Copy

Copy
7

11 人目の人がスイッチを押し、お湯が 33 秒出た後にもう一度スイッチが押され、44 秒間お湯が出続けます。 よって合計で 77 秒間お湯が出ます。


入力例 2Copy

Copy
2 4
0 5

出力例 2Copy

Copy
8

11 人目の人がスイッチを押して、お湯が出終わった 11 秒後にもう一度スイッチが押されます。


入力例 3Copy

Copy
4 1000000000
0 1000 1000000 1000000000

出力例 3Copy

Copy
2000000000

入力例 4Copy

Copy
1 1
0

出力例 4Copy

Copy
1

入力例 5Copy

Copy
9 10
0 3 5 7 100 110 200 300 311

出力例 5Copy

Copy
67

Score : 300300 points

Problem Statement

In a public bath, there is a shower which emits water for TT seconds when the switch is pushed.

If the switch is pushed when the shower is already emitting water, from that moment it will be emitting water for TT seconds. Note that it does not mean that the shower emits water for TT additional seconds.

NN people will push the switch while passing by the shower. The ii-th person will push the switch tit_i seconds after the first person pushes it.

How long will the shower emit water in total?

Constraints

  • 1N200,0001 ≤ N ≤ 200,000
  • 1T1091 ≤ T ≤ 10^9
  • 0=t1<t2<t3<,...,<tN1<tN1090 = t_1 < t_2 < t_3 < , ..., < t_{N-1} < t_N ≤ 10^9
  • TT and each tit_i are integers.

Input

Input is given from Standard Input in the following format:

NN TT
t1t_1 t2t_2 ... tNt_N

Output

Assume that the shower will emit water for a total of XX seconds. Print XX.


Sample Input 1Copy

Copy
2 4
0 3

Sample Output 1Copy

Copy
7

Three seconds after the first person pushes the water, the switch is pushed again and the shower emits water for four more seconds, for a total of seven seconds.


Sample Input 2Copy

Copy
2 4
0 5

Sample Output 2Copy

Copy
8

One second after the shower stops emission of water triggered by the first person, the switch is pushed again.


Sample Input 3Copy

Copy
4 1000000000
0 1000 1000000 1000000000

Sample Output 3Copy

Copy
2000000000

Sample Input 4Copy

Copy
1 1
0

Sample Output 4Copy

Copy
1

Sample Input 5Copy

Copy
9 10
0 3 5 7 100 110 200 300 311

Sample Output 5Copy

Copy
67


2025-04-03 (木)
23:56:58 +00:00