لینک‌های مفید برای شرکت در مسابقه:

توجه کنید که سوالات مسابقه ترتیب خاصی ندارند.

E: Road



Per is repairing roads. The job is concentrated on roads with one lane in each direction. Thus, when Per closes down the lane in one direction, all traffic has to go through the other lane. This is done by allowing only one direction of travel at any time. Per is often assigned the task of directing the traffic through this lane.

No car drives before being given a “go” signal from Per, and all the cars drive through the maintained segment at the same speed. Because there is only one lane, cars in one direction must leave the segment before cars in the other direction can enter. For safety reasons, cars driving in the same direction have to keep a distance of at least 33 seconds between each other.

For example, if cars AA and BB arrive at the west endpoint at second 1010, Per can let them go at earliest second 1010 and 1313 in the order they arrived. If it, in this example, takes 88 seconds to pass and car CC arrives at the east endpoint at second 1717, then car CC has to wait 44 seconds until Per lets it go at second 2121.

There is a problem of drivers getting irritated with Per; they think they have to stop for too long. Per has been logging how long they can bear to wait before they get irritated. One day, to be able to evaluate his work, Per noted down when the cars arrived at the two endpoints of the segment. Per’s question is the following: what is the least number of drivers that can be irritated? We assume that a driver gets irritated if the time between the moment he arrives at the maintained segment and the moment he is actually given the “go” exceeds his irritation time limit.

Input🔗

The first line of the input contains two integers tt and nn (4t180,1n2504 \le t \le 180, 1 \le n \le 250), where tt is the time in seconds needed for a car to pass the segment under maintenance, and nn is the total number of cars arriving at the segment. The following nn lines describe the cars. The ii-th line contains the description of the ii-th car in the following format:

  • one character dd, being WW for cars arriving at the west endpoint of the segment, and EE for the ones that arrive at the east endpoint;
  • two integers aa and rr (0a<86400,0r36000 \le a < 86 400, 0 \le r \le 3 600), where aa denotes the arrival time in seconds after midnight, and rr denotes the time in seconds it takes for the driver to get irritated.

The cars arrive in the order specified in the input and they cannot overtake each other. In particular, a car whose driver is already irritated has to stay in the queue until eventually receiving the “go” and passing the maintained segment.

Output🔗

Output one line with the least possible number of irritated drivers.

Sample Input 1🔗

8 3
W 10 0
W 10 3
E 17 4
Plain text

Sample Output 1🔗

0
Plain text

Sample Input 2🔗

100 5
W 0 200
W 5 201
E 95 1111
E 95 1
E 95 11
Plain text

Sample Output 2🔗

1
Plain text
ارسال پاسخ برای این سؤال
در حال حاضر شما دسترسی ندارید.