A13077 | Christmas Trees
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ Christmas trees on an infinite number line. The $i$ -th tree grows at the position $x_i$ . All $x_i$ are guaranteed to be distinct.
Each integer point can be either occupied by the Christmas tree, by the human or not occupied at all. Non-integer points cannot be occupied by anything.
There are $m$ people who want to celebrate Christmas. Let $y_1, y_2, \dots, y_m$ be the positions of people (note that all values $x_1, x_2, \dots, x_n, y_1, y_2, \dots, y_m$ should be distinct and all $y_j$ should be integer). You want to find such an arrangement of people that the value $\sum\limits_{j=1}^{m}\min\limits_{i=1}^{n}|x_i - y_j|$ is the minimum possible (in other words, the sum of distances to the nearest Christmas tree for all people should be minimized).
In other words, let $d_j$ be the distance from the $j$ -th human to the nearest Christmas tree ( $d_j = \min\limits_{i=1}^{n} |y_j - x_i|$ ). Then you need to choose such positions $y_1, y_2, \dots, y_m$ that $\sum\limits_{j=1}^{m} d_j$ is the minimum possible.
Each integer point can be either occupied by the Christmas tree, by the human or not occupied at all. Non-integer points cannot be occupied by anything.
There are $m$ people who want to celebrate Christmas. Let $y_1, y_2, \dots, y_m$ be the positions of people (note that all values $x_1, x_2, \dots, x_n, y_1, y_2, \dots, y_m$ should be distinct and all $y_j$ should be integer). You want to find such an arrangement of people that the value $\sum\limits_{j=1}^{m}\min\limits_{i=1}^{n}|x_i - y_j|$ is the minimum possible (in other words, the sum of distances to the nearest Christmas tree for all people should be minimized).
In other words, let $d_j$ be the distance from the $j$ -th human to the nearest Christmas tree ( $d_j = \min\limits_{i=1}^{n} |y_j - x_i|$ ). Then you need to choose such positions $y_1, y_2, \dots, y_m$ that $\sum\limits_{j=1}^{m} d_j$ is the minimum possible.
输入格式
The first line of the input contains two integers $n$ and $m$ ( $1 \le n, m \le 2 \cdot 10^5$ ) — the number of Christmas trees and the number of people.
The second line of the input contains $n$ integers $x_1, x_2, \dots, x_n$ ( $-10^9 \le x_i \le 10^9$ ), where $x_i$ is the position of the $i$ -th Christmas tree. It is guaranteed that all $x_i$ are distinct.
The second line of the input contains $n$ integers $x_1, x_2, \dots, x_n$ ( $-10^9 \le x_i \le 10^9$ ), where $x_i$ is the position of the $i$ -th Christmas tree. It is guaranteed that all $x_i$ are distinct.
输出格式
In the first line print one integer $res$ — the minimum possible value of $\sum\limits_{j=1}^{m}\min\limits_{i=1}^{n}|x_i - y_j|$ (in other words, the sum of distances to the nearest Christmas tree for all people).
In the second line print $m$ integers $y_1, y_2, \dots, y_m$ ( $-2 \cdot 10^9 \le y_j \le 2 \cdot 10^9$ ), where $y_j$ is the position of the $j$ -th human. All $y_j$ should be distinct and all values $x_1, x_2, \dots, x_n, y_1, y_2, \dots, y_m$ should be distinct.
If there are multiple answers, print any of them.
In the second line print $m$ integers $y_1, y_2, \dots, y_m$ ( $-2 \cdot 10^9 \le y_j \le 2 \cdot 10^9$ ), where $y_j$ is the position of the $j$ -th human. All $y_j$ should be distinct and all values $x_1, x_2, \dots, x_n, y_1, y_2, \dots, y_m$ should be distinct.
If there are multiple answers, print any of them.
输入输出样例
输入 #1
2 6 1 5
输出 #1
8 -1 2 6 4 0 3
输入 #2
3 5 0 3 1
输出 #2
7 5 -2 4 -1 2
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted