Problem10092--ABC347 —— C - Ideal Holidays

10092: ABC347 —— C - Ideal Holidays

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

In the Kingdom of AtCoder, a week consists of $A+B$ days, with the first through $A$-th days being holidays and the $(A+1)$-th through $(A+B)$-th being weekdays.

Takahashi has $N$ plans, and the $i$-th plan is scheduled $D_i$ days later.

He has forgotten what day of the week it is today. Determine if it is possible for all of his $N$ plans to be scheduled on holidays.

Input

The input is given from Standard Input in the following format:

```
$N$ $A$ $B$
$D_1$ $D_2$ $\ldots$ $D_N$
```

Output

Print `Yes` in a single line if it is possible for all of Takahashi's $N$ plans to be scheduled on holidays, and `No` otherwise.

Constraints

-   $1\leq N\leq 2\times 10^5$
-   $1\leq A,B\leq 10^9$
-   $1\leq D_1<D_2<\ldots<D_N\leq 10^9$

Sample 1 Input

3 2 5
1 2 9

Sample 1 Output

Yes

In this input, a week consists of seven days, with the first through second days being holidays and the third through seventh days being weekdays.

Let us assume today is the seventh day of the week. In this case, one day later would be the first day of the week, two days later would be the second day of the week, and nine days later would also be the second day of the week, making all plans scheduled on holidays. Therefore, it is possible for all of Takahashi's $N$ plans to be scheduled on holidays.

Sample 2 Input

2 5 10
10 15

Sample 2 Output

No

Sample 3 Input

4 347 347
347 700 705 710

Sample 3 Output

Yes

Source/Category