A16212 | Helmets in Night Light
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Pak Chanek is the chief of a village named Khuntien. On one night filled with lights, Pak Chanek has a sudden and important announcement that needs to be notified to all of the $n$ residents in Khuntien.
First, Pak Chanek shares the announcement directly to one or more residents with a cost of $p$ for each person. After that, the residents can share the announcement to other residents using a magical helmet-shaped device. However, there is a cost for using the helmet-shaped device. For each $i$ , if the $i$ -th resident has got the announcement at least once (either directly from Pak Chanek or from another resident), he/she can share the announcement to at most $a_i$ other residents with a cost of $b_i$ for each share.
If Pak Chanek can also control how the residents share the announcement to other residents, what is the minimum cost for Pak Chanek to notify all $n$ residents of Khuntien about the announcement?
First, Pak Chanek shares the announcement directly to one or more residents with a cost of $p$ for each person. After that, the residents can share the announcement to other residents using a magical helmet-shaped device. However, there is a cost for using the helmet-shaped device. For each $i$ , if the $i$ -th resident has got the announcement at least once (either directly from Pak Chanek or from another resident), he/she can share the announcement to at most $a_i$ other residents with a cost of $b_i$ for each share.
If Pak Chanek can also control how the residents share the announcement to other residents, what is the minimum cost for Pak Chanek to notify all $n$ residents of Khuntien about the announcement?
输入格式
Each test contains multiple test cases. The first line contains an integer $t$ ( $1 \leq t \leq 10^4$ ) — the number of test cases. The following lines contain the description of each test case.
The first line contains two integers $n$ and $p$ ( $1 \leq n \leq 10^5$ ; $1 \leq p \leq 10^5$ ) — the number of residents and the cost for Pak Chanek to share the announcement directly to one resident.
The second line contains $n$ integers $a_1,a_2,a_3,\ldots,a_n$ ( $1\leq a_i\leq10^5$ ) — the maximum number of residents that each resident can share the announcement to.
The third line contains $n$ integers $b_1,b_2,b_3,\ldots,b_n$ ( $1\leq b_i\leq10^5$ ) — the cost for each resident to share the announcement to one other resident.
It is guaranteed that the sum of $n$ over all test cases does not exceed $10^5$ .
The first line contains two integers $n$ and $p$ ( $1 \leq n \leq 10^5$ ; $1 \leq p \leq 10^5$ ) — the number of residents and the cost for Pak Chanek to share the announcement directly to one resident.
The second line contains $n$ integers $a_1,a_2,a_3,\ldots,a_n$ ( $1\leq a_i\leq10^5$ ) — the maximum number of residents that each resident can share the announcement to.
The third line contains $n$ integers $b_1,b_2,b_3,\ldots,b_n$ ( $1\leq b_i\leq10^5$ ) — the cost for each resident to share the announcement to one other resident.
It is guaranteed that the sum of $n$ over all test cases does not exceed $10^5$ .
输出格式
For each test case, output a line containing an integer representing the minimum cost to notify all $n$ residents of Khuntien about the announcement.
输入输出样例
输入 #1
3 6 3 2 3 2 1 1 3 4 3 2 6 3 6 1 100000 100000 1 4 94 1 4 2 3 103 96 86 57
输出 #1
16 100000 265
In the first test case, the following is a possible optimal strategy:
1. Pak Chanek shares the announcement directly to the $3$ -rd, $5$ -th, and $6$ -th resident. This requires a cost of $p+p+p=3+3+3=9$ .
2. The $3$ -rd resident shares the announcement to the $1$ -st and $2$ -nd resident. This requires a cost of $b_3+b_3=2+2=4$ .
3. The $2$ -nd resident shares the announcement to the $4$ -th resident. This requires a cost of $b_2=3$ .
The total cost is $9+4+3=16$ . It can be shown that there is no other strategy with a smaller cost.
1. Pak Chanek shares the announcement directly to the $3$ -rd, $5$ -th, and $6$ -th resident. This requires a cost of $p+p+p=3+3+3=9$ .
2. The $3$ -rd resident shares the announcement to the $1$ -st and $2$ -nd resident. This requires a cost of $b_3+b_3=2+2=4$ .
3. The $2$ -nd resident shares the announcement to the $4$ -th resident. This requires a cost of $b_2=3$ .
The total cost is $9+4+3=16$ . It can be shown that there is no other strategy with a smaller cost.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted