N - Land Clearing Editorial /

Time Limit: 4 sec / Memory Limit: 1024 MB

注意

この問題に対する言及は、2019年12月29日 05:00 JST まで禁止されています。言及がなされた場合、賠償が請求される可能性があります。

試験後に総合得点や認定級を公表するのは構いませんが、どの問題が解けたかなどの情報は発信しないようにお願いします。

問題文

WW の門がある。以下、この門を線分とみなし、線分上の任意の点は 00 以上 WW 以下の座標をもつとする。

この門の上に NN 個の石が落ちている。ii 個目の石 (1iN)(1 \leqq i \leqq N) は区間 (li,ri)(l_i, r_i) を占有し、撤去するのに必要な金額は pip_i 円である。同じ地点が複数の石によって占有されている可能性もある。

車が通れるように、あなたは何個か石を取り除き、この門の上に石が存在しない長さ CC の区間が存在するようにしたい。この目的を達成するために必要な最小の金額を求めるプログラムを作成せよ。

制約

  • 1N100,0001 \leqq N \leqq 100,000
  • 10W1,000,000,00010 \leqq W \leqq 1,000,000,000
  • 1CW1 \leqq C \leqq W
  • 0li<riW0 \leqq l_i < r_i \leqq W
  • 1pi1,000,000,0001 \leqq p_i \leqq 1,000,000,000
  • 入力中の値はすべて整数である。

入力

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

NN WW CC
l1l_1 r1r_1 p1p_1
l2l_2 r2r_2 p2p_2
::
lNl_N rNr_N pNp_N

出力

目標の達成に必要な最小金額を表す整数を出力せよ。(石を取り除く必要がないときは 0 と出力せよ。)


入力例 1Copy

Copy
3 10 5
1 3 100
8 10 123
4 6 3

出力例 1Copy

Copy
3

33 円を支払って 33 番目の石を撤去すると、長さ 55 の区間 [3,8][3, 8] に石が存在しなくなる。これが最適な選択である。


入力例 2Copy

Copy
22 30 10
0 30 1000000000
0 30 1000000000
0 30 1000000000
7 30 261806
6 19 1
5 18 1238738
12 28 84
10 14 5093
9 20 9
15 26 8739840
6 8 240568
14 19 198
2 4 1102
1 29 5953283
9 20 183233
9 13 44580
6 23 787237159
12 14 49
28 29 9020727
14 20 318783
2 19 9862194
9 30 166652

出力例 2Copy

Copy
3805189325

必要な金額が 3232 bit 整数型に収まらないことがある。

Warning

Do not make any mention of this problem until December 29, 2019, 05:00 a.m. JST. In case of violation, compensation may be demanded.

After the examination, you can reveal your total score and grade to others, but nothing more (for example, which problems you solved).

Problem Statement

There is a gate of width WW. Below, we will regard this gate as a segment, and assume that a point on this segment has a coordinate between 00 and WW (inclusive).

We have NN stones scattered on the gate. The ii-th stone (1iN)(1 \leq i \leq N) occupies the segment (li,ri)(l_i, r_i), and it costs pip_i yen (the currency of Japan) to remove it. Multiple stones may occupy the same point.

You want to allow a car to pass through this gate by removing some stones so that there will be a segment of length CC not overlapping with a stone. Write a program to find the minimum amount of money to do so.

Constraints

  • 1N1000001 \leq N \leq 100000
  • 10W10910 \leq W \leq 10^9
  • 1CW1 \leq C \leq W
  • 0li<riW0 \leq l_i < r_i \leq W
  • 1pi1091 \leq p_i \leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN WW CC
l1l_1 r1r_1 p1p_1
l2l_2 r2r_2 p2p_2
::
lNl_N rNr_N pNp_N

Output

Print the integer representing the minimum amount of money needed to achieve the objective (or print 0 if no stone needs to be removed).


Sample Input 1Copy

Copy
3 10 5
1 3 100
8 10 123
4 6 3

Sample Output 1Copy

Copy
3

If we remove the third stone for 33 yen, no stone will overlap the segment [3,8][3, 8] of length 55. This is the optimal choice.


Sample Input 2Copy

Copy
22 30 10
0 30 1000000000
0 30 1000000000
0 30 1000000000
7 30 261806
6 19 1
5 18 1238738
12 28 84
10 14 5093
9 20 9
15 26 8739840
6 8 240568
14 19 198
2 4 1102
1 29 5953283
9 20 183233
9 13 44580
6 23 787237159
12 14 49
28 29 9020727
14 20 318783
2 19 9862194
9 30 166652

Sample Output 2Copy

Copy
3805189325

The amount of money may not fit into a 3232-bit integer type.



2025-04-05 (Sat)
02:34:13 +00:00