#Lutece0208. Just a Hook

Just a Hook

Migrated from Lutece 208 Just a Hook

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

In the game of DotA, Pudge’s meat hook is actually the most horrible thing for most of the heroes. The hook is made up of several consecutive metallic sticks which are of the same length.

Now Pudge wants to do some operations on the hook.

Let us number the consecutive metallic sticks of the hook from 11 to NN. For each operation, Pudge can change the consecutive metallic sticks, numbered from XX to YY, into cupreous sticks, silver sticks or golden sticks.

The total value of the hook is calculated as the sum of values of NN metallic sticks. More precisely, the value for each kind of stick is calculated as follows:

  • For each cupreous stick, the value is 11.
  • For each silver stick, the value is 22.
  • For each golden stick, the value is 33.

Pudge wants to know the total value of the hook after performing the operations.

You may consider the original hook is made up of cupreous sticks.

Input

The input consists of several test cases. The first line of the input is the number of the cases. There are no more than 1010 cases.

For each case, the first line contains an integer NN, 1N100,0001\leq N\leq 100,000, which is the number of the sticks of Pudge’s meat hook and the second line contains an integer QQ, 0Q100,0000\leq Q\leq 100,000, which is the number of the operations.

Next QQ lines, each line contains three integers XX, YY, 1XYN1\leq X\leq Y\leq N, ZZ, 1Z31\leq Z\leq 3, which defines an operation: change the sticks numbered from XX to YY into the metal kind ZZ, where Z=1Z=1 represents the cupreous kind, Z=2Z=2 represents the silver kind and Z=3Z=3 represents the golden kind.

Output

For each case, print a number in a line representing the total value of the hook after the operations. Use the format in the example.

Samples

1 
10 2 
1 5 2
5 9 3
Case 1: The total value of the hook is 24.

Note

The data used in this problem is unofficial data prepared by standy. So any mistake here does not imply mistake in the offcial judge data.

Resources

2008 "Sunline Cup" National Invitational Cont