Apple Catching

아직 제출이 없습니다시간 제한2초메모리 제한1024 MB

문제

It's raining apples! At certain points in time, some number of apples will hit the number line. At certain points in time, some of Farmer John's cows will arrive on the number line and start catching apples.

If an apple hits the number line without a cow to catch it, it is lost forever. If a cow and an apple arrive at the same time, the cow catches it. Each cow can travel one unit per second. Once a cow catches a single apple, she exits the number line.

If FJ's cows collaborate optimally, how many apples can they catch in total?

입력

The first line contains NN (1N21051\le N\le 2\cdot 10^5), the number of times apples hit the number line or FJ's cows appear.

The next NN lines each contain four integers q_iq\_i, t_it\_i, x_ix\_i, and n_in\_i (q_i1,2,0t_i109,0x_i109,1n_i103q\_i\in \\{1,2\\}, 0\le t\_i\le 10^9, 0\le x\_i\le 10^9, 1\le n\_i\le 10^3).

 

  • If q_i=1q\_i=1, this means that n_in\_i of FJ's cows arrive on the number line at time t_it\_i at location x_ix\_i.
  • If q_i=2q\_i=2, this means that n_in\_i apples will hit the number line at time t_it\_i at location x_ix\_i.

It is guaranteed that all of the ordered pairs (t_i,x_i)(t\_i,x\_i) are distinct.

출력

The maximum number of apples FJ's cows may collectively catch.