A11403 | Ralph And His Tour in Binary Country
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Ralph is in the Binary Country. The Binary Country consists of $n$ cities and $(n-1)$ bidirectional roads connecting the cities. The roads are numbered from $1$ to $(n-1)$ , the $i$ -th road connects the city labeled  (here $⌊\ x⌋$ denotes the $x$ rounded down to the nearest integer) and the city labeled $(i+1)$ , and the length of the $i$ -th road is $L_{i}$ .
Now Ralph gives you $m$ queries. In each query he tells you some city $A_{i}$ and an integer $H_{i}$ . He wants to make some tours starting from this city. He can choose any city in the Binary Country (including $A_{i}$ ) as the terminal city for a tour. He gains happiness $(H_{i}-L)$ during a tour, where $L$ is the distance between the city $A_{i}$ and the terminal city.
Ralph is interested in tours from $A_{i}$ in which he can gain positive happiness. For each query, compute the sum of happiness gains for all such tours.
Ralph will never take the same tour twice or more (in one query), he will never pass the same city twice or more in one tour.
Now Ralph gives you $m$ queries. In each query he tells you some city $A_{i}$ and an integer $H_{i}$ . He wants to make some tours starting from this city. He can choose any city in the Binary Country (including $A_{i}$ ) as the terminal city for a tour. He gains happiness $(H_{i}-L)$ during a tour, where $L$ is the distance between the city $A_{i}$ and the terminal city.
Ralph is interested in tours from $A_{i}$ in which he can gain positive happiness. For each query, compute the sum of happiness gains for all such tours.
Ralph will never take the same tour twice or more (in one query), he will never pass the same city twice or more in one tour.
输入格式
The first line contains two integers $n$ and $m$ ( $1<=n<=10^{6}$ , $1<=m<=10^{5}$ ).
$(n-1)$ lines follow, each line contains one integer $L_{i}$ ( $1<=L_{i}<=10^{5}$ ), which denotes the length of the $i$ -th road.
$m$ lines follow, each line contains two integers $A_{i}$ and $H_{i}$ ( $1<=A_{i}<=n$ , $0<=H_{i}<=10^{7}$ ).
$(n-1)$ lines follow, each line contains one integer $L_{i}$ ( $1<=L_{i}<=10^{5}$ ), which denotes the length of the $i$ -th road.
$m$ lines follow, each line contains two integers $A_{i}$ and $H_{i}$ ( $1<=A_{i}<=n$ , $0<=H_{i}<=10^{7}$ ).
输出格式
Print $m$ lines, on the $i$ -th line print one integer — the answer for the $i$ -th query.
输入输出样例
输入 #1
2 2 5 1 8 2 4
输出 #1
11 4
输入 #2
6 4 2 1 1 3 2 2 4 1 3 3 2 1 7
输出 #2
11 6 3 28
Here is the explanation for the second sample.
Ralph's first query is to start tours from city $2$ and $H_{i}$ equals to $4$ . Here are the options:
- He can choose city $5$ as his terminal city. Since the distance between city $5$ and city $2$ is $3$ , he can gain happiness $4-3=1$ .
- He can choose city $4$ as his terminal city and gain happiness $3$ .
- He can choose city $1$ as his terminal city and gain happiness $2$ .
- He can choose city $3$ as his terminal city and gain happiness $1$ .
- Note that Ralph can choose city $2$ as his terminal city and gain happiness $4$ .
- Ralph won't choose city $6$ as his terminal city because the distance between city $6$ and city $2$ is $5$ , which leads to negative happiness for Ralph.
So the answer for the first query is $1+3+2+1+4=11$ .
Ralph's first query is to start tours from city $2$ and $H_{i}$ equals to $4$ . Here are the options:
- He can choose city $5$ as his terminal city. Since the distance between city $5$ and city $2$ is $3$ , he can gain happiness $4-3=1$ .
- He can choose city $4$ as his terminal city and gain happiness $3$ .
- He can choose city $1$ as his terminal city and gain happiness $2$ .
- He can choose city $3$ as his terminal city and gain happiness $1$ .
- Note that Ralph can choose city $2$ as his terminal city and gain happiness $4$ .
- Ralph won't choose city $6$ as his terminal city because the distance between city $6$ and city $2$ is $5$ , which leads to negative happiness for Ralph.
So the answer for the first query is $1+3+2+1+4=11$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted