CF1621B.Integers Shop

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The integers shop sells nn segments. The ii -th of them contains all integers from lil_i to rir_i and costs cic_i coins.

Tomorrow Vasya will go to this shop and will buy some segments there. He will get all integers that appear in at least one of bought segments. The total cost of the purchase is the sum of costs of all segments in it.

After shopping, Vasya will get some more integers as a gift. He will get integer xx as a gift if and only if all of the following conditions are satisfied:

  • Vasya hasn't bought xx .
  • Vasya has bought integer ll that is less than xx .
  • Vasya has bought integer rr that is greater than xx .

Vasya can get integer xx as a gift only once so he won't have the same integers after receiving a gift.

For example, if Vasya buys segment [2,4][2, 4] for 2020 coins and segment [7,8][7, 8] for 2222 coins, he spends 4242 coins and receives integers 2,3,4,7,82, 3, 4, 7, 8 from these segments. He also gets integers 55 and 66 as a gift.

Due to the technical issues only the first ss segments (that is, segments [l1,r1],[l2,r2],,[ls,rs][l_1, r_1], [l_2, r_2], \ldots, [l_s, r_s] ) will be available tomorrow in the shop.

Vasya wants to get (to buy or to get as a gift) as many integers as possible. If he can do this in differents ways, he selects the cheapest of them.

For each ss from 11 to nn , find how many coins will Vasya spend if only the first ss segments will be available.

输入格式

The first line contains a single integer tt ( 1t10001 \leq t \leq 1000 ) — the number of test cases.

The first line of each test case contains the single integer nn ( 1n1051 \leq n \leq 10^5 ) — the number of segments in the shop.

Each of next nn lines contains three integers lil_i , rir_i , cic_i ( 1liri109,1ci1091 \leq l_i \leq r_i \leq 10^9, 1 \leq c_i \leq 10^9 ) — the ends of the ii -th segments and its cost.

It is guaranteed that the total sum of nn over all test cases doesn't exceed 21052 \cdot 10^5 .

输出格式

For each test case output nn integers: the ss -th ( 1sn1 \leq s \leq n ) of them should be the number of coins Vasia will spend in the shop if only the first ss segments will be available.

输入输出样例

  • 输入#1

    3
    2
    2 4 20
    7 8 22
    2
    5 11 42
    5 11 42
    6
    1 4 4
    5 8 9
    7 8 7
    2 10 252
    1 11 271
    1 10 1

    输出#1

    20
    42
    42
    42
    4
    13
    11
    256
    271
    271

说明/提示

In the first test case if s=1s = 1 then Vasya can buy only the segment [2,4][2, 4] for 2020 coins and get 33 integers.

The way to get 77 integers for 4242 coins in case s=2s = 2 is described in the statement.

In the second test case note, that there can be the same segments in the shop.

首页