Preparando MOJI

Where Are My Flakes?

2000ms 262144K

Description:

One morning the Cereal Guy found out that all his cereal flakes were gone. He found a note instead of them. It turned out that his smart roommate hid the flakes in one of n boxes. The boxes stand in one row, they are numbered from 1 to n from the left to the right. The roommate left hints like "Hidden to the left of the i-th box" ("To the left of i"), "Hidden to the right of the i-th box" ("To the right of i"). Such hints mean that there are no flakes in the i-th box as well. The Cereal Guy wants to know the minimal number of boxes he necessarily needs to check to find the flakes considering all the hints. Or he wants to find out that the hints are contradictory and the roommate lied to him, that is, no box has the flakes.

Input:

The first line contains two integers n and m (1 ≤ n ≤ 1000, 0 ≤ m ≤ 1000) which represent the number of boxes and the number of hints correspondingly. Next m lines contain hints like "To the left of i" and "To the right of i", where i is integer (1 ≤ i ≤ n). The hints may coincide.

Output:

The answer should contain exactly one integer — the number of boxes that should necessarily be checked or "-1" if the hints are contradictory.

Sample Input:

2 1
To the left of 2

Sample Output:

1

Sample Input:

3 2
To the right of 1
To the right of 2

Sample Output:

1

Sample Input:

3 1
To the left of 3

Sample Output:

2

Sample Input:

3 2
To the left of 2
To the right of 1

Sample Output:

-1

Informação

Codeforces

Provedor Codeforces

Código CF60A

Tags

implementationtwo pointers

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:29:36

Relacionados

Nada ainda