#ABC201F. [ABC201F] Insertion Sort

[ABC201F] Insertion Sort

Score : 600600 points

Problem Statement

There are NN people, who are given ID numbers 11 through NN, standing in a row from left to right. Initially, the ID number of the ii-th person from the left is PiP_i.

Your objective is to rearrange the people in ascending order of the ID number from left to right, by repeatedly doing the three kinds of operations below. You can do these operations any number of times (possibly zero) in any order.

  • Choose an integer i (1iN)i\ (1 \leq i \leq N), pay the cost AiA_i, and move Person ii (the person with the ID number ii) to any position of your choice.
  • Choose an integer i (1iN)i\ (1 \leq i \leq N), pay the cost BiB_i, and move Person ii to the left end of the row.
  • Choose an integer i (1iN)i\ (1 \leq i \leq N), pay the cost CiC_i, and move Person ii to the right end of the row.

Minimize the total cost you pay before achieving the objective.

Constraints

  • 1N2×1051 \leq N \leq 2 \times 10^5
  • 1PiN1 \leq P_i \leq N
  • 1Ai,Bi,Ci1091 \leq A_i,B_i,C_i \leq 10^9
  • PiPj (ij)P_i \neq P_j\ (i \neq j)
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

P1P_1 P2P_2 \ldots PNP_N

A1A_1 B1B_1 C1C_1

A2A_2 B2B_2 C2C_2

\vdots

ANA_N BNB_N CNC_N

Output

Print the minimum total cost you need to pay before achieving the objective.

3
3 1 2
9 3 5
8 6 4
9 4 6
6

You can rearrange the people in ascending order of the ID number by paying the cost C3=6C_3=6 to move Person 33 to the right end.

There is no way to rearrange the people that costs less, so the answer is 66.

6
2 6 5 3 4 1
10 8 16
30 2 10
10 17 8
11 27 22
8 6 5
15 29 2
15

The following sequence of operations minimizes the total cost:

  • pay the cost B1=8B_1=8 to move Person 11 to the left end;
  • pay the cost C5=5C_5=5 to move Person 55 to the right end;
  • pay the cost C6=2C_6=2 to move Person 66 to the right end.
9
3 8 4 7 6 9 1 5 2
7976 3696 9706
768 8807 8521
1133 8683 7120
1189 3331 2259
900 7451 1159
6126 2639 7107
5540 8253 2891
8417 4220 9091
8732 1417 1540
15865
12
11 9 1 12 2 7 3 5 10 4 6 8
3960 3158 9029
6521 6597 7581
5688 2299 2123
4946 4298 9122
394 4350 9142
3098 7151 2039
8525 3758 6155
6970 3658 9353
9780 1778 3608
6065 5562 923
9701 5524 6482
9395 6016 705
20637