A12508 | Earth Wind and Fire
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ stones arranged on an axis. Initially the $i$ -th stone is located at the coordinate $s_i$ . There may be more than one stone in a single place.
You can perform zero or more operations of the following type:
- take two stones with indices $i$ and $j$ so that $s_i \leq s_j$ , choose an integer $d$ ( $0 \leq 2 \cdot d \leq s_j - s_i$ ), and replace the coordinate $s_i$ with $(s_i + d)$ and replace coordinate $s_j$ with $(s_j - d)$ . In other words, draw stones closer to each other.
You want to move the stones so that they are located at positions $t_1, t_2, \ldots, t_n$ . The order of the stones is not important — you just want for the multiset of the stones resulting positions to be the same as the multiset of $t_1, t_2, \ldots, t_n$ .
Detect whether it is possible to move the stones this way, and if yes, construct a way to do so. You don't need to minimize the number of moves.
You can perform zero or more operations of the following type:
- take two stones with indices $i$ and $j$ so that $s_i \leq s_j$ , choose an integer $d$ ( $0 \leq 2 \cdot d \leq s_j - s_i$ ), and replace the coordinate $s_i$ with $(s_i + d)$ and replace coordinate $s_j$ with $(s_j - d)$ . In other words, draw stones closer to each other.
You want to move the stones so that they are located at positions $t_1, t_2, \ldots, t_n$ . The order of the stones is not important — you just want for the multiset of the stones resulting positions to be the same as the multiset of $t_1, t_2, \ldots, t_n$ .
Detect whether it is possible to move the stones this way, and if yes, construct a way to do so. You don't need to minimize the number of moves.
输入格式
The first line contains a single integer $n$ ( $1 \le n \le 3 \cdot 10^5$ ) – the number of stones.
The second line contains integers $s_1, s_2, \ldots, s_n$ ( $1 \le s_i \le 10^9$ ) — the initial positions of the stones.
The second line contains integers $t_1, t_2, \ldots, t_n$ ( $1 \le t_i \le 10^9$ ) — the target positions of the stones.
The second line contains integers $s_1, s_2, \ldots, s_n$ ( $1 \le s_i \le 10^9$ ) — the initial positions of the stones.
The second line contains integers $t_1, t_2, \ldots, t_n$ ( $1 \le t_i \le 10^9$ ) — the target positions of the stones.
输出格式
If it is impossible to move the stones this way, print "NO".
Otherwise, on the first line print "YES", on the second line print the number of operations $m$ ( $0 \le m \le 5 \cdot n$ ) required. You don't have to minimize the number of operations.
Then print $m$ lines, each containing integers $i, j, d$ ( $1 \le i, j \le n$ , $s_i \le s_j$ , $0 \leq 2 \cdot d \leq s_j - s_i$ ), defining the operations.
One can show that if an answer exists, there is an answer requiring no more than $5 \cdot n$ operations.
Otherwise, on the first line print "YES", on the second line print the number of operations $m$ ( $0 \le m \le 5 \cdot n$ ) required. You don't have to minimize the number of operations.
Then print $m$ lines, each containing integers $i, j, d$ ( $1 \le i, j \le n$ , $s_i \le s_j$ , $0 \leq 2 \cdot d \leq s_j - s_i$ ), defining the operations.
One can show that if an answer exists, there is an answer requiring no more than $5 \cdot n$ operations.
输入输出样例
输入 #1
5 2 2 7 4 9 5 4 5 5 5
输出 #1
YES 4 4 3 1 2 3 1 2 5 2 1 5 2
输入 #2
3 1 5 10 3 5 7
输出 #2
NO
Consider the first example.
- After the first move the locations of stones is $[2, 2, 6, 5, 9]$ .
- After the second move the locations of stones is $[2, 3, 5, 5, 9]$ .
- After the third move the locations of stones is $[2, 5, 5, 5, 7]$ .
- After the last move the locations of stones is $[4, 5, 5, 5, 5]$ .
- After the first move the locations of stones is $[2, 2, 6, 5, 9]$ .
- After the second move the locations of stones is $[2, 3, 5, 5, 9]$ .
- After the third move the locations of stones is $[2, 5, 5, 5, 7]$ .
- After the last move the locations of stones is $[4, 5, 5, 5, 5]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted