100 atcoder#ABC127D. [ABC127D] Integer Cards

[ABC127D] Integer Cards

Score : 400400 points

Problem Statement

You have NN cards. On the ii-th card, an integer AiA_i is written.

For each j=1,2,...,Mj = 1, 2, ..., M in this order, you will perform the following operation once:

Operation: Choose at most BjB_j cards (possibly zero). Replace the integer written on each chosen card with CjC_j.

Find the maximum possible sum of the integers written on the NN cards after the MM operations.

Constraints

  • All values in input are integers.
  • 1N1051 \leq N \leq 10^5
  • 1M1051 \leq M \leq 10^5
  • 1Ai,Ci1091 \leq A_i, C_i \leq 10^9
  • 1BiN1 \leq B_i \leq N

Input

Input is given from Standard Input in the following format:

NN MM

A1A_1 A2A_2 ...... ANA_N

B1B_1 C1C_1

B2B_2 C2C_2

\vdots

BMB_M CMC_M

Output

Print the maximum possible sum of the integers written on the NN cards after the MM operations.

3 2
5 1 4
2 3
1 5
14

By replacing the integer on the second card with 55, the sum of the integers written on the three cards becomes 5+5+4=145 + 5 + 4 = 14, which is the maximum result.

10 3
1 8 5 7 100 4 52 33 13 5
3 10
4 30
1 4
338
3 2
100 100 100
3 99
3 99
300
11 3
1 1 1 1 1 1 1 1 1 1 1
3 1000000000
4 1000000000
3 1000000000
10000000001

The output may not fit into a 3232-bit integer type.