#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 to . For each operation, Pudge can change the consecutive metallic sticks, numbered from to , into cupreous sticks, silver sticks or golden sticks.
The total value of the hook is calculated as the sum of values of metallic sticks. More precisely, the value for each kind of stick is calculated as follows:
- For each
cupreous
stick, the value is . - For each
silver
stick, the value is . - For each
golden
stick, the value is .
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 cases.
For each case, the first line contains an integer , , which is the number of the sticks of Pudge’s meat hook and the second line contains an integer , , which is the number of the operations.
Next lines, each line contains three integers , , , , , which defines an operation: change the sticks numbered from to into the metal kind , where represents the cupreous
kind, represents the silver
kind and 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