COCI '23 Contest 3 #2 Vrsar

View as PDF

Submit solution

Points: 10 (partial)
Time limit: 1.0s
Memory limit: 512M

Problem type

Vrsar is a small coastal town consisting of n hills. Surprisingly, all the hills, when viewed from the sea, are arranged one behind the other so that the i-th hill is x_i meters away from the sea. At the top of each hill, there is an ice rink. All ice rinks open simultaneously every day, but they do not close at the same time: the i-th ice rink is open for t_i minutes.

Iva and Mia have come to Vrsar and will be here for m days. Iva and Mia love ice skating and want to skate every day they spend in this town. At the beginning of the i-th day, they are a_i meters away from the sea, and their ice-skating adventure starts at the same time as the ice rinks open. To reach an ice rink, they must walk to it, moving at a speed of one meter per minute. They can walk both to the left and to the right. If they are at a position where there is a hill, they can climb the hill and reach the ice rink on top of it, or they can bypass it without climbing.

They are in very good shape, so they can climb the hill without spending extra time. Once they reach the top, they can skate as much as they want or until the ice rink closes. Going downhill is not as easy as going up. Recently, it rained, and the ground is slippery, so it takes s_i minutes for them to descend the i-th hill. After descending from a hill, they can continue walking towards the next ice rink.

The illustration shows the first example.
Iva and Mia are at the starting point at position 1. They walk for 2 minutes to the ice rink on the hill at position 3 and ice skate there for 5 minutes. Then they descend from the hill (in 0 minutes), continue walking for 3 minutes to the ice rink on the hill at position 6, and ice skate there for 1 minute. In total, they have ice skated for 5 + 1 = 6 minutes.

Iva and Mia are interested in determining the maximum number of minutes they can ice skate each day. In one day, they can visit any number of ice rinks. Since they want to spend more time skating and less time calculating, they have turned to you for help. Help them solve this problem!

Note: If Iva and Mia at the beginning of the day are at the same position as a hill, they are at the bottom of the hill, and so they have to climb it if they want to ice skate on the ice rink on top of it.

Input Specification

The first line contains integers n and m (1 \le n, m \le 10^5), the number of hills and the number of days. The i-th of the following n lines contains integers x_i, t_i and s_i (0 \le x_i, t_i, s_i \le 10^9), the distance of the i-th hill from the shore, closing time of the ice rink, and the time required for the descent from the hill.

The third line contains m integers a_i (0 \le a_i \le 10^9), Iva's and Mia's starting distance from the shore at the beginning of the i-th day.

Output Specification

In one line, print m integers, the i-th of which is the maximum amount of time for which Iva and Mia can ice skate on the i-th day.

Scoring

Subtask Points Constraints
1 8 n, m \le 10
2 17 m = 1, a_1 = 0
3 19 n, m \le 1\,000
4 26 No additional constraints.

Sample Input 1

3 1
3 7 0
6 11 3
10 13 5
1

Sample Output 1

6

Explanation for Sample 1

Take a look at the illustration in the statement.

Sample Input 2

3 2
5 10 3
3 6 1
1 5 0
0 3

Sample Output 2

5 8

Sample Input 3

1 3
3 3 3
0 1 2

Sample Output 3

0 1 2

Comments

There are no comments at the moment.