A15176 | Rain
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are the owner of a harvesting field which can be modeled as an infinite line, whose positions are identified by integers.
It will rain for the next $n$ days. On the $i$ -th day, the rain will be centered at position $x_i$ and it will have intensity $p_i$ . Due to these rains, some rainfall will accumulate; let $a_j$ be the amount of rainfall accumulated at integer position $j$ . Initially $a_j$ is $0$ , and it will increase by $\max(0,p_i-|x_i-j|)$ after the $i$ -th day's rain.
A flood will hit your field if, at any moment, there is a position $j$ with accumulated rainfall $a_j>m$ .
You can use a magical spell to erase exactly one day's rain, i.e., setting $p_i=0$ . For each $i$ from $1$ to $n$ , check whether in case of erasing the $i$ -th day's rain there is no flood.
It will rain for the next $n$ days. On the $i$ -th day, the rain will be centered at position $x_i$ and it will have intensity $p_i$ . Due to these rains, some rainfall will accumulate; let $a_j$ be the amount of rainfall accumulated at integer position $j$ . Initially $a_j$ is $0$ , and it will increase by $\max(0,p_i-|x_i-j|)$ after the $i$ -th day's rain.
A flood will hit your field if, at any moment, there is a position $j$ with accumulated rainfall $a_j>m$ .
You can use a magical spell to erase exactly one day's rain, i.e., setting $p_i=0$ . For each $i$ from $1$ to $n$ , check whether in case of erasing the $i$ -th day's rain there is no flood.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \leq t \leq 10^4$ ). The description of the test cases follows.
The first line of each test case contains two integers $n$ and $m$ ( $1 \leq n \leq 2 \cdot 10^5$ , $1 \leq m \leq 10^9$ ) — the number of rainy days and the maximal accumulated rainfall with no flood occurring.
Then $n$ lines follow. The $i$ -th of these lines contains two integers $x_i$ and $p_i$ ( $1 \leq x_i,p_i \leq 10^9$ ) — the position and intensity of the $i$ -th day's rain.
The sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .
The first line of each test case contains two integers $n$ and $m$ ( $1 \leq n \leq 2 \cdot 10^5$ , $1 \leq m \leq 10^9$ ) — the number of rainy days and the maximal accumulated rainfall with no flood occurring.
Then $n$ lines follow. The $i$ -th of these lines contains two integers $x_i$ and $p_i$ ( $1 \leq x_i,p_i \leq 10^9$ ) — the position and intensity of the $i$ -th day's rain.
The sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .
输出格式
For each test case, output a binary string $s$ length of $n$ . The $i$ -th character of $s$ is 1 if after erasing the $i$ -th day's rain there is no flood, while it is 0, if after erasing the $i$ -th day's rain the flood still happens.
输入输出样例
输入 #1
4 3 6 1 5 5 5 3 4 2 3 1 3 5 2 2 5 1 6 10 6 6 12 4 5 1 6 12 5 5 5 9 7 8 3
输出 #1
001 11 00 100110
In the first test case, if we do not use the spell, the accumulated rainfall distribution will be like this:
If we erase the third day's rain, the flood is avoided and the accumulated rainfall distribution looks like this:
In the second test case, since initially the flood will not happen, we can erase any day's rain.
In the third test case, there is no way to avoid the flood.
If we erase the third day's rain, the flood is avoided and the accumulated rainfall distribution looks like this:
In the second test case, since initially the flood will not happen, we can erase any day's rain.
In the third test case, there is no way to avoid the flood.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted