#abc171d. [abc171_d]Replacing

[abc171_d]Replacing

Problem Statement

You have a sequence AA composed of NN positive integers: A1,A2,cdots,ANA_{1}, A_{2}, \\cdots, A_{N}.

You will now successively do the following QQ operations:

  • In the ii-th operation, you replace every element whose value is BiB_{i} with CiC_{i}.

For each ii (1leqileqQ)(1 \\leq i \\leq Q), find SiS_{i}: the sum of all elements in AA just after the ii-th operation.

Constraints

  • All values in input are integers.
  • 1leqN,Q,Ai,Bi,Cileq1051 \\leq N, Q, A_{i}, B_{i}, C_{i} \\leq 10^{5}
  • BineqCiB_{i} \\neq C_{i}

Input

Input is given from Standard Input in the following format:

NN A1A_{1} A2A_{2} cdots\\cdots ANA_{N} QQ B1B_{1} C1C_{1} B2B_{2} C2C_{2} vdots\\vdots BQB_{Q} CQC_{Q}

Output

Print QQ integers SiS_{i} to Standard Output in the following format:

S1S_{1} S2S_{2} vdots\\vdots SQS_{Q}

Note that SiS_{i} may not fit into a 3232-bit integer.


Sample Input 1

4
1 2 3 4
3
1 2
3 4
2 4

Sample Output 1

11
12
16

Initially, the sequence AA is 1,2,3,41,2,3,4.

After each operation, it becomes the following:

  • 2,2,3,42, 2, 3, 4
  • 2,2,4,42, 2, 4, 4
  • 4,4,4,44, 4, 4, 4

Sample Input 2

4
1 1 1 1
3
1 2
2 1
3 5

Sample Output 2

8
4
4

Note that the sequence AA may not contain an element whose value is BiB_{i}.


Sample Input 3

2
1 2
3
1 100
2 100
100 1000

Sample Output 3

102
200
2000