A14851 | Integers Shop
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The integers shop sells $n$ segments. The $i$ -th of them contains all integers from $l_i$ to $r_i$ and costs $c_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 $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 $[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 $s$ from $1$ to $n$ , find how many coins will Vasya spend if only the first $s$ segments will be available.
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 $[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 $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 \leq t \leq 1000$ ) — the number of test cases.
The first line of each test case contains the single integer $n$ ( $1 \leq n \leq 10^5$ ) — the number of segments in the shop.
Each of next $n$ lines contains three integers $l_i$ , $r_i$ , $c_i$ ( $1 \leq l_i \leq r_i \leq 10^9, 1 \leq c_i \leq 10^9$ ) — 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 \cdot 10^5$ .
The first line of each test case contains the single integer $n$ ( $1 \leq n \leq 10^5$ ) — the number of segments in the shop.
Each of next $n$ lines contains three integers $l_i$ , $r_i$ , $c_i$ ( $1 \leq l_i \leq r_i \leq 10^9, 1 \leq c_i \leq 10^9$ ) — 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 \cdot 10^5$ .
输出格式
For each test case output $n$ integers: the $s$ -th ( $1 \leq s \leq 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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted