CF1621B.Integers Shop
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The integers shop sells n segments. The i -th of them contains all integers from li to ri and costs ci 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 x as a gift if and only if all of the following conditions are satisfied:
- Vasya hasn't bought x .
- Vasya has bought integer l that is less than x .
- Vasya has bought integer r that is greater than x .
Vasya can get integer x 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] for 20 coins and segment [7,8] for 22 coins, he spends 42 coins and receives integers 2,3,4,7,8 from these segments. He also gets integers 5 and 6 as a gift.
Due to the technical issues only the first s segments (that is, segments [l1,r1],[l2,r2],…,[ls,rs] ) 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 s from 1 to n , find how many coins will Vasya spend if only the first s segments will be available.
输入格式
The first line contains a single integer t ( 1≤t≤1000 ) — the number of test cases.
The first line of each test case contains the single integer n ( 1≤n≤105 ) — the number of segments in the shop.
Each of next n lines contains three integers li , ri , ci ( 1≤li≤ri≤109,1≤ci≤109 ) — the ends of the i -th segments and its cost.
It is guaranteed that the total sum of n over all test cases doesn't exceed 2⋅105 .
输出格式
For each test case output n integers: the s -th ( 1≤s≤n ) of them should be the number of coins Vasia will spend in the shop if only the first s 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=1 then Vasya can buy only the segment [2,4] for 20 coins and get 3 integers.
The way to get 7 integers for 42 coins in case s=2 is described in the statement.
In the second test case note, that there can be the same segments in the shop.