시간 제한메모리 제한제출정답맞힌 사람정답 비율
3 초 512 MB133494139.423%

문제

A parade of all elephants is to commence soon at the Byteotian zoo. The zoo employees have encouraged these enormous animals to form a single line, as the manager wills it to be the initial figure of the parade.

Unfortunately, the manager himself came to the parade and did not quite like what he saw - he had intended an entirely different order of the elephants. Therefore he enforced his ordering, claiming the animals would seem most majestic this way, and made the employees reorder the elephants accordingly.

As a pack of moving elephants can wreak havoc, the employees decided to have them rearranged by swapping one pair at a time. Luckily the animals need not stand next to each other in order to swap positions in the line. Making an elephant move, however, is not as easy as it sounds. In fact, the effort one has to put into it is proportional to the animal's mass. Hence, the effort involved in swapping a pair of elephants of respective masses m1 and m2 can be estimated by m1+m2. What is the minimum effort involved in rearranging the elephants according to manager's will?

Write a programme that:

  • reads from the standard input the masses of all elephants from the zoo, along with their current and desired order in the line,
  • determines a sequence of elephant swaps leading from the initial to the desired order of animals in the line, such that this sequence minimises the summary effort involved in all the swaps,
  • prints out the summary effort on the standard output.

입력

The first line of the standard input contains a single integer n (2 ≤ n ≤ 1,000,000) denoting the number of elephants in the zoo. We assume that the elephants are numbered from 1 to n to simplify things. The second line holds n integers mi (100 ≤ mi ≤ 6,500 dla 1 ≤ i ≤ n) separated by single spaces and denoting the masses of respective elephants (in kilogrammes).

The third line of input contains n pairwise different integers ai (1 ≤ ai ≤ n) separated by single spaces and denoting the numbers of successive elephants in the initial ordering. The fourth line holds n pairwise different integers bi (1 ≤ bi ≤ n) separated by single spaces and denoting the numbers of successive elephants in the ordering desired by the zoo manager. You may assume that the sequences (ai) and (bi) differ.

출력

The first and only line of the standard output should contain a single integer denoting the minimum summary effort involved in reordering the elephants from the order represented by the sequence to the one represented by (bi).

예제 입력 1

6
2400 2000 1200 2400 1600 4000
1 4 5 3 6 2
5 3 2 4 6 1

예제 출력 1

11200

힌트

One of the optimal rearrangements consists of swapping the following pairs of elephants:

  • 2 and 5 - effort involved: 2000+1600=3600, order achieved: 1 4 2 3 6 5,
  • 3 i 4 - effort involved: 1200+2400=3600, order achieved: 1 3 2 4 6 5,
  • 1 i 5 - effort involved: 2400+1600=4000, order achieved: 5 3 2 4 6 1, which is the one desired.