A12769 | Employment
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Two large companies "Cecsi" and "Poca Pola" are fighting against each other for a long time. In order to overcome their competitor, "Poca Pola" started a super secret project, for which it has total $n$ vacancies in all of their offices. After many tests and interviews $n$ candidates were selected and the only thing left was their employment.
Because all candidates have the same skills, it doesn't matter where each of them will work. That is why the company decided to distribute candidates between workplaces so that the total distance between home and workplace over all candidates is minimal.
It is well known that Earth is round, so it can be described as a circle, and all $m$ cities on Earth can be described as points on this circle. All cities are enumerated from $1$ to $m$ so that for each $i$ ( $1 \le i \le m - 1$ ) cities with indexes $i$ and $i + 1$ are neighbors and cities with indexes $1$ and $m$ are neighbors as well. People can move only along the circle. The distance between any two cities equals to minimal number of transitions between neighboring cities you have to perform to get from one city to another. In particular, the distance between the city and itself equals $0$ .
The "Poca Pola" vacancies are located at offices in cities $a_1, a_2, \ldots, a_n$ . The candidates live in cities $b_1, b_2, \ldots, b_n$ . It is possible that some vacancies are located in the same cities and some candidates live in the same cities.
The "Poca Pola" managers are too busy with super secret project, so you were asked to help "Poca Pola" to distribute candidates between workplaces, so that the sum of the distance between home and workplace over all candidates is minimum possible.
Because all candidates have the same skills, it doesn't matter where each of them will work. That is why the company decided to distribute candidates between workplaces so that the total distance between home and workplace over all candidates is minimal.
It is well known that Earth is round, so it can be described as a circle, and all $m$ cities on Earth can be described as points on this circle. All cities are enumerated from $1$ to $m$ so that for each $i$ ( $1 \le i \le m - 1$ ) cities with indexes $i$ and $i + 1$ are neighbors and cities with indexes $1$ and $m$ are neighbors as well. People can move only along the circle. The distance between any two cities equals to minimal number of transitions between neighboring cities you have to perform to get from one city to another. In particular, the distance between the city and itself equals $0$ .
The "Poca Pola" vacancies are located at offices in cities $a_1, a_2, \ldots, a_n$ . The candidates live in cities $b_1, b_2, \ldots, b_n$ . It is possible that some vacancies are located in the same cities and some candidates live in the same cities.
The "Poca Pola" managers are too busy with super secret project, so you were asked to help "Poca Pola" to distribute candidates between workplaces, so that the sum of the distance between home and workplace over all candidates is minimum possible.
输入格式
The first line contains two integers $m$ and $n$ ( $1 \le m \le 10^9$ , $1 \le n \le 200\,000$ ) — the number of cities on Earth and the number of vacancies.
The second line contains $n$ integers $a_1, a_2, a_3, \ldots, a_n$ ( $1 \le a_i \le m$ ) — the cities where vacancies are located.
The third line contains $n$ integers $b_1, b_2, b_3, \ldots, b_n$ ( $1 \le b_i \le m$ ) — the cities where the candidates live.
The second line contains $n$ integers $a_1, a_2, a_3, \ldots, a_n$ ( $1 \le a_i \le m$ ) — the cities where vacancies are located.
The third line contains $n$ integers $b_1, b_2, b_3, \ldots, b_n$ ( $1 \le b_i \le m$ ) — the cities where the candidates live.
输出格式
The first line should contain the minimum total distance between home and workplace over all candidates.
The second line should contain $n$ different integers from $1$ to $n$ . The $i$ -th of them should be the index of candidate that should work at $i$ -th workplace.
The second line should contain $n$ different integers from $1$ to $n$ . The $i$ -th of them should be the index of candidate that should work at $i$ -th workplace.
输入输出样例
输入 #1
10 3 1 5 5 10 4 6
输出 #1
3 1 2 3
输入 #2
10 3 1 4 8 8 3 6
输出 #2
4 2 3 1
In the first example, the distance between each candidate and his workplace equals to $1$ (from $1$ to $10$ , from $4$ to $5$ and from $6$ to $5$ ).
In the second example:
- The second candidate works at first workplace, the distance between cities $3$ and $1$ equals to $2$ .
- The third candidate works at second workplace, the distance between cities $6$ and $4$ equals to $2$ .
- The first candidate works at third workplace, the distance between cities $8$ and $8$ equals to $0$ .
In the second example:
- The second candidate works at first workplace, the distance between cities $3$ and $1$ equals to $2$ .
- The third candidate works at second workplace, the distance between cities $6$ and $4$ equals to $2$ .
- The first candidate works at third workplace, the distance between cities $8$ and $8$ equals to $0$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted