#5045. Problem 2. Deforestation

0

Problem 2. Deforestation

Problem 2. Deforestation

USACO 2024 December Contest, Silver

Farmer John is expanding his farm! He has identified the perfect location in the Red-Black Forest, which consists of NN trees (1N1051 \le N \le 10^5) on a number line, with the ii-th tree at position xix_i (109xi109-10^9 \le x_i \le 10^9).

Environmental protection laws restrict which trees Farmer John can cut down to make space for his farm. There are KK restrictions (1K1051 \leq K \leq 10^5) specifying that there must always be at least tit_i trees (1tiN1 \leq t_i \leq N) in the line segment [li,ri][l_i, r_i], including the endpoints (109liri109-10^9 \le l_i \leq r_i \le 10^9). It is guaranteed that the Red-Black Forest initially satisfies these restrictions.

Farmer John wants to make his farm as big as possible. Please help him compute the maximum number of trees he can cut down while still satisfying all the restrictions!

INPUT FORMAT (input arrives from the terminal / stdin):

Each input consists of TT (1T101 \le T \le 10) independent test cases. It is guaranteed that the sums of all NN and of all KK within an input each do not exceed 31053 \cdot 10^5.

The first line of input contains TT. Each test case is then formatted as follows:

The first line contains integers NN and KK.The next line contains the NN integers x1,,xNx_1, \dots, x_N.Each of the next KK lines contains three space-separated integers: lil_i, rir_i and tit_i.

OUTPUT FORMAT (print output to the terminal / stdout):

For each test case, output a single line with an integer denoting the maximum number of trees Farmer John can cut down.

SAMPLE INPUT:


3
7 1
8 4 10 1 2 6 7
2 9 3
7 2
8 4 10 1 2 6 7
2 9 3
1 10 1
7 2
8 4 10 1 2 6 7
2 9 3
1 10 4

SAMPLE OUTPUT:


4
4
3

For the first test case, Farmer John can cut down the first 44 trees, leaving trees at xi=2,6,7x_i = 2, 6, 7 to satisfy the restriction.

For the second test case, the additional restriction does not affect which trees Farmer John can cut down, so he can cut down the same trees and satisfy both restrictions.

For the third test case, Farmer John can only cut down at most 33 trees because there are initially 77 trees but the second restriction requires him to leave at least 44 trees uncut.

SCORING: Input 2: N,K16N, K \le 16Inputs 3-5: N,K1000N, K \le 1000Inputs 6-7: ti=1t_i = 1 for all i=1,,Ki = 1, \dots, K.Inputs 8-11: No additional constraints.

Problem credits: Tina Wang, Jiahe Lu, Benjamin Qi