CF1214F.Employment
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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≤i≤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 a1,a2,…,an . The candidates live in cities b1,b2,…,bn . 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≤m≤109 , 1≤n≤200000 ) — the number of cities on Earth and the number of vacancies.
The second line contains n integers a1,a2,a3,…,an ( 1≤ai≤m ) — the cities where vacancies are located.
The third line contains n integers b1,b2,b3,…,bn ( 1≤bi≤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.
输入输出样例
输入#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 .