시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 256 MB195422.222%

문제

There are N children in a kindergarten, and each child considers one child to be their best friend. Children are quite unusual, so it holds that no two children consider the same child their best friend, but it is possible that a child is a best friend to themself! Additionally, if child B is best friend of child A, A is not necessarily best friend of child B.

The kindergarten teacher has N bags of candy that she wishes to distribute to the children such that each child gets exactly one bag. However, the problem is that the bags don’t necessarily contain the same amounts of candy, so the children can become displeased. Since the children have a very developed sense of justice, the dissatisfaction of child A is equal to the absolute difference between the number of candy A and their best friend received.

The kindergarten teacher has decided to distribute the bags so that the maximal dissatisfaction of a child is as small as possible. Help her determine the optimal distribution of candy bags!

입력

The first line of input contains the integer N (1 ≤ N ≤ 150).

The second line of input contains N distinct integers, whereas the i th number is the label of the best friend of the i th child. The children are labelled with numbers from 1 to N.

The third line of input contains N integers, whereas the i th number is equal to the number of candy in the i th bag. The numbers won’t exceed 109.

출력

The first line of output must contain the minimum possible maximal dissatisfaction of a child.

The second line of output must contain N numbers, separated by space, whereas the i th number denotes the number of candy for the i th child. If there are multiple optimal distributions, output any.

예제 입력 1

3
2 1 3
3 8 5

예제 출력 1

2
5 3 8

예제 입력 2

5
3 5 4 1 2
24 45 39 19 16

예제 출력 2

8
16 39 24 19 45

예제 입력 3

8
6 3 7 1 4 8 2 5
6 5 2 4 7 4 4 3

예제 출력 3

2
3 4 4 4 6 5 2 7