import java.io.*; import java.util.*; public class Main { static ArrayList percents = new ArrayList<>(); static ArrayList prices = new ArrayList<>(); static int[][][] dp; static int[] costs; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int c = sc.nextInt(); costs = new int[n]; for (int i = 0; i < n; i++) { costs[i] = sc.nextInt(); } Arrays.sort(costs); for (int i = 0; i < c; i++) { int type = sc.nextInt(); int x = sc.nextInt(); if (type == 1) { prices.add(x); } else { percents.add(x); } } Collections.sort(prices); Collections.sort(percents); dp = new int[n][prices.size() + 1][percents.size() + 1]; System.out.println(dfw(n - 1, prices.size(), percents.size())); } static int dfw(int idx, int pr, int pe) { if (idx < 0) { return 0; } if (dp[idx][pr][pe] == 0) { if (pr == 0 && pe == 0) { dp[idx][pr][pe] = dfw(idx - 1, pr, pe) + costs[idx]; } else if (pr == 0) { dp[idx][pr][pe] = dfw(idx - 1, pr, pe - 1) + costs[idx] / 100 * (100 - percents.get(pe - 1)); } else if (pe == 0) { dp[idx][pr][pe] = dfw(idx - 1, pr - 1, pe) + Math.max(0, costs[idx] - prices.get(pr - 1)); } else { dp[idx][pr][pe] = Math.min(dfw(idx - 1, pr, pe - 1) + costs[idx] / 100 * (100 - percents.get(pe - 1)), dfw(idx - 1, pr - 1, pe) + Math.max(0, costs[idx] - prices.get(pr - 1))); } } return dp[idx][pr][pe]; } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }