Semiexpress

The JOI Railways is the only railway company in the Kingdom of JOI. There are $N$ stations numbered from $1$ to $N$ along a railway. Currently, two kinds of trains are operated; one is express and the other one is local.

A local train stops at every station. For each $i$ ($1 \leq i < N$), by a local train, it takes $A$ minutes from the station $i$ to the station ($i + 1$).

An express train stops only at the stations $S_1, S_2, ..., S_M$ ($1 = S_1 < S_2 < ... < S_M = N$). For each $i$ ($1 \leq i < N$), by an express train, it takes $B$ minutes from the station $i$ to the station ($i + 1$).

The JOI Railways plans to operate another kind of trains called "semiexpress." For each $i$ ($1 \leq i < N$), by a semiexpress train, it takes $C$ minutes from the station $i$ to the station ($i + 1$). The stops of semiexpress trains are not yet determined. But they must satisfy the following conditions:

The JOI Railways wants to maximize the number of stations (except for the station 1) to which we can travel from the station 1 within $T$ minutes. The JOI Railways plans to determine the stops of semiexpress trains so that this number is maximized. We do not count the standing time of trains.

When we travel from the station 1 to another station, we can take trains only to the direction where the numbers of stations increase. If several kinds of trains stop at the station $i$ ($2 \leq i \leq N - 1$), you can transfer between any trains which stop at that station.

When the stops of semiexpress trains are determined appropriately, what is the maximum number of stations (except for the station 1) to which we can travel from the station 1 within $T$ minutes?

Task

Given the number of stations of the JOI Railways, the stops of express trains, the speeds of the trains, and maximum travel time, write a program which calculates the maximum number of stations which satisfy the condition on the travel time.

Input

Read the following data from the standard input.

Output

Write one line to the standard output. The output contains the maximum number of stations satisfying the condition on the travel time.

Constraints

All input data satisfy the following conditions.

Sample Input and Output

Sample Input 1

10 3 5
10 3 5
30
1
6
10

Sample Output 1

8

In this sample input, there are 10 stations of the JOI Railways. An express train stops at three stations 1, 6, 10. Assume that the stops of an semiexpress train are 1, 5, 6, 8, 10. Then, among the stations 2, 3, ...10, we can travel from the station 1 to every station except for the station 9 within 30 minutes.

For some $i$, the travel time and the route from the station 1 to the station $i$ are as follows:

Sample Input 2

10 3 5
10 3 5
25
1
6
10

Sample Output 2

7

Sample Input 3

90 10 12
100000 1000 10000
10000
1
10
20
30
40
50
60
70
80
90

Sample Output 2

2

Sample Input 4

12 3 4
10 1 2
30
1
11
12

Sample Output 4

8

Sample Input 5

300 8 16
345678901 123456789 234567890
12345678901
1
10
77
82
137
210
297
300

Sample Output 5

72

Sample Input 6

1000000000 2 3000
1000000000 1 2
1000000000
1
1000000000

Sample Output 6

3000

Creative Commonse License

The 16th Japanese Olympiad in Informatics (JOI 2016/2017) Final Round