Problem9355--CCC '21 S3 - Lunch Concert

9355: CCC '21 S3 - Lunch Concert

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

It's lunchtime at your school! Your $N$ friends are all standing on a long field, as they usually do. The field can be represented as a number line, with the $i$-th friend initially at position $P_i$ metres along it. The $i$-th friend is able to walk in either direction along the field at a rate of one metre per $W_i$ seconds, and their hearing is good enough to be able to hear music up to and including $D_i$ metres away from their position. Multiple students may occupy the same positions on the field, both initially and after walking.

You're going to hold a little concert at some position $c$ metres along the field (where $c$ is any integer of your choice), and text all of your friends about it. Once you do, each of them will walk along the field for the minimum amount of time such that they end up being able to hear your concert (in other words, such that each friend $i$ ends up within $D_i$ units of $c$).

You'd like to choose $c$ such that you minimize the sum of all $N$ of your friends' walking times. What is this minimum sum (in seconds)? Please note that the result might not fit within a 32-bit integer.

Input

The first line of input contains $N\ (1 \leq N \leq 200,000)$.
The next $N$ lines contain three space-separated integers, $P_i, W_i, D_i\ (0 \leq P_i \leq 1,000,000,000,\ 1 \leq W_i \leq 1,000,\ 0 \leq D_i \leq 1,000,000,000)$.

Output

Output one integer which is the minimum possible sum of walking times (in seconds) for all $N$ of your friends to be able to hear your concert.

Sample 1 Input

1
0 1000 0

Sample 1 Output

0
If you choose c=0, your single friend won't need to walk at all to hear it.

Sample 2 Input

2
10 4 3
20 4 2

Sample 2 Output

20
One possible optimal choice of c is 14, which would require your first friend to walk to position 11 (taking 4×1=4 seconds) and your second friend to walk to position 16 (taking 4×4=16 seconds), for a total of 20 seconds.

Sample 3 Input

3
6 8 3
1 4 1
14 5 2

Sample 3 Output

43

HINT

相同题目:CCC21s3

Source/Category