A11478 | Tanks
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Petya sometimes has to water his field. To water the field, Petya needs a tank with exactly $V$ ml of water.
Petya has got $N$ tanks, $i$ -th of them initially containing $a_{i}$ ml of water. The tanks are really large, any of them can contain any amount of water (no matter how large this amount is).
Also Petya has got a scoop that can contain up to $K$ ml of water (initially the scoop is empty). This scoop can be used to get some water from some tank, and after that pour it all into some other tank (it is impossible to get water from multiple tanks without pouring it, or leave some water in the scoop when pouring it). When Petya tries to get some water from a tank, he gets $min(v,K)$ water, where $v$ is the current volume of water in the tank.
Is it possible to obtain a tank with exactly $V$ ml of water using these operations? If it is possible, print a sequence of operations that allows to do it. If there are multiple ways to obtain needed amount of water in some tank, print any of them.
Petya has got $N$ tanks, $i$ -th of them initially containing $a_{i}$ ml of water. The tanks are really large, any of them can contain any amount of water (no matter how large this amount is).
Also Petya has got a scoop that can contain up to $K$ ml of water (initially the scoop is empty). This scoop can be used to get some water from some tank, and after that pour it all into some other tank (it is impossible to get water from multiple tanks without pouring it, or leave some water in the scoop when pouring it). When Petya tries to get some water from a tank, he gets $min(v,K)$ water, where $v$ is the current volume of water in the tank.
Is it possible to obtain a tank with exactly $V$ ml of water using these operations? If it is possible, print a sequence of operations that allows to do it. If there are multiple ways to obtain needed amount of water in some tank, print any of them.
输入格式
The first line contains $3$ integers: $N$ $(2<=N<=5000)$ , $K$ $(1<=K<=5000)$ , and $V$ $(0<=V<=10^{9})$ — the number of tanks, the maximum volume of water the scoop can contain, and the required amount of water in some tank, respectively.
The second line contains $N$ integers $a_{i}$ $(0<=a_{i}<=10^{5})$ , where $a_{i}$ is initial volume of water in $i$ -th tank.
The second line contains $N$ integers $a_{i}$ $(0<=a_{i}<=10^{5})$ , where $a_{i}$ is initial volume of water in $i$ -th tank.
输出格式
If it is impossible to obtain a tank with exactly $V$ ml of water, print NO.
Otherwise print YES in the first line, and beginning from the second line, print the sequence of operations in the following format:
Each line has to contain $3$ numbers denoting a compressed operation: " $cnt$ $x$ $y$ " $(1<=cnt<=10^{9},1<=x,y<=N)$ , where $x$ is the index of the tank where we get water, $y$ is the index of the tank where we pour water, and $cnt$ is the number of times we transfer water from tank $x$ to tank $y$ .
The number of these lines must not exceed $N+5$ .
Otherwise print YES in the first line, and beginning from the second line, print the sequence of operations in the following format:
Each line has to contain $3$ numbers denoting a compressed operation: " $cnt$ $x$ $y$ " $(1<=cnt<=10^{9},1<=x,y<=N)$ , where $x$ is the index of the tank where we get water, $y$ is the index of the tank where we pour water, and $cnt$ is the number of times we transfer water from tank $x$ to tank $y$ .
The number of these lines must not exceed $N+5$ .
输入输出样例
输入 #1
2 3 5 2 3
输出 #1
YES 1 2 1
输入 #2
2 3 4 2 3
输出 #2
NO
输入 #3
5 2 0 1 3 5 7 9
输出 #3
YES 2 2 1 3 3 1 4 4 1 5 5 1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted