#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 rectangular field, consisting of rows and columns. Each row has its cells indexed from to , from left to right.
Each cell of the filed contains an integer . Initially Dima's score equals zero, and whenever Dima reaches a cell in row and column , his score changes by . 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 special offers in the show, -th special offer allows Dima to mark cells in the second row between and , though Dima's score changes by 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 moves in total, out of which would be horizontal and --- 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 and () --- the number of columns in the field and the number of special offers.
The next three lines describe the field, -th of them contains integers , , , ( --- the values in the -th row.
The next lines describe special offers: -th offer is described by 3 integers , and (, ) --- 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. 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 |
---|---|---|---|---|---|
0 | -- | -- | -- | Sample test cases. | |
1 | |||||
2 | |||||
3 | |||||
4 | -- | All are equal | |||
5 | |||||
6 | -- | -- | Offline-evaluation. |