#P13544. [OOI 2022] Serious Business

[OOI 2022] Serious Business

题目描述

Dima is taking part in a show organized by his friend Peter, the show is called <>. In this show Dima is required to cross a 3×n3 \times n rectangular field, consisting of 33 rows and nn columns. Each row has its cells indexed from 11 to nn, from left to right.

Each cell of the filed contains an integer ai,ja_{i,j}. Initially Dima's score equals zero, and whenever Dima reaches a cell in row ii and column jj, his score changes by ai,ja_{i,j}. Note that, the score might become negative.

Initially all cells in the first and in the third row are marked as available, and all cells in the second row are marked as unavailable. However, Peter offered Dima some help: there are qq special offers in the show, ii-th special offer allows Dima to mark cells in the second row between lil_i and rir_i, though Dima's score changes by kik_i whenever he accepts the special offer. Dima is allowed to use as many special offers as he pleases, and might mark the same cell as available multiple times.

Dima starts his journey in the first row and in the first column and would like to reach the cell in the third row and in the last column. He can move either down to the next row or right to the next column (meaning he could increase the current row or column by 1), thus making n+1n+1 moves in total, out of which n1n-1 would be horizontal and 22 --- vertical.

Peter promised Dima to pay him based on his final score, so the sum of all numbers of all visited cells minus the cost of all special offers used. Please help Dima to maximize his final score.

输入格式

The first input line contains two integers nn and qq (1n,q5000001 \le n, q \le 500\,000) --- the number of columns in the field and the number of special offers.

The next three lines describe the field, ii-th of them contains nn integers ai1a_{i1}, ai2a_{i2}, \ldots, aina_{in} (109aij109)-10^9 \le a_{ij} \le 10^9) --- the values in the ii-th row.

The next qq lines describe special offers: ii-th offer is described by 3 integers lil_i, rir_i and kik_i (1lirin1 \leq l_i \leq r_i \leq n, 1ki1091\leq k_i\leq 10^9) --- the segment that is being unblocked and the cost of this special offer.

输出格式

Output one integer --- the maximum final score Dima can achieve.

4 3
1 0 2 -1
-3 1 9 2
3 2 4 1
1 2 5
2 3 4
1 4 14
13
5 4
-20 -10 -11 -10 1
1 3 3 6 3
14 -20 3 6 2
1 5 13
1 2 2
3 5 3
2 3 1
-4

提示

Scoring

The testset for this problem consists of 6 test groups. You get points for a group only if your solution passes all tests from this group and from all the required groups. Offline-evaluation\textbf{Offline-evaluation} means that you will not get immediate feedback for this group and you will be able to see the outcome only after the end of the competition. Please note that it is not required to pass all sample test cases.

Group Points Additional constraints < Required groups Comment
nn qq
0 00 -- -- -- Sample test cases.
1 1010 q=1q=1
2 1616 n500n \leq 500 q500q \leq 500 00
3 1414 n2000n \leq 2\,000 q5000q \leq 5\,000 0,20, 2
4 1717 -- All kik_i are equal
5 2121 n100000n \leq 100\,000 q100000q \leq 100\,000 0,2,30, 2, 3
6 2222 -- 00--55 Offline-evaluation.