Problem J
Road Work

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
For example, if cars A and B arrive at the
west endpoint at second
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
-
one character
, being W for cars arriving at the west endpoint of the segment, and E for the ones that arrive at the east endpoint; and -
two integers
and ( and ), where denotes the arrival time in seconds after midnight, and 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 | Sample Output 1 |
---|---|
8 3 W 10 0 W 10 3 E 17 4 |
0 |
Sample Input 2 | Sample Output 2 |
---|---|
100 5 W 0 200 W 5 201 E 95 1111 E 95 1 E 95 11 |
1 |