#D1601. Semiexpress
Semiexpress
Semiexpress
The JOI Railways is the only railway company in the Kingdom of JOI. There are stations numbered from to 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 (), by a local train, it takes minutes from the station to the station ().
An express train stops only at the stations (). For each (), by an express train, it takes minutes from the station to the station ().
The JOI Railways plans to operate another kind of trains called "semiexpress." For each (), by a semiexpress train, it takes minutes from the station to the station (). The stops of semiexpress trains are not yet determined. But they must satisfy the following conditions:
- Semiexpress trains must stop at every station where express trains stop.
- Semiexpress trains must stop at stations exactly.
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 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 (), 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 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.
- The first line of input contains three space separated integers , , . This means there are stations of the JOI Railways, an express train stops at stations, and a semiexpress train stops at stations,
- The second line of input contains three space separated integers , , . This means it takes , , minutes by a local, express, semiexpress train to travel from a station to the next station, respectively.
li> The third line of input contains an integer . This means 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 minutes.
- The -th line () of the following lines contains an integer . This means an express train stops at the station .
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 , the travel time and the route from the station 1 to the station are as follows:
- From the station 1 to the station 3, we can travel using a local train only. The travel time is 20 minutes.
- From the station 1 to the station 7, we travel from the station 1 to the station 6 by an express train, and transfer to a local train. The travel time is 25 minutes.
- From the station 1 to the station 8, we travel from the station 1 to the station 6 by an express train, and transfer to a semiexpress train. The travel time is 25 minutes.
- From the station 1 to the station 9, we travel from the station 1 to the station 6 by an express train, from the station 6 to the station 8 by a semiexpress train, and from the station 8 to the station 9 by a local train. In total, the travel time is 35 minutes.
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
Example
Input
10 3 5 10 3 5 30 1 6 10
Output
8
inputFormat
Input
Read the following data from the standard input.
- The first line of input contains three space separated integers , , . This means there are stations of the JOI Railways, an express train stops at stations, and a semiexpress train stops at stations,
- The second line of input contains three space separated integers , , . This means it takes , , minutes by a local, express, semiexpress train to travel from a station to the next station, respectively.
li> The third line of input contains an integer . This means 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 minutes.
- The -th line () of the following lines contains an integer . This means an express train stops at the station .
outputFormat
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 , the travel time and the route from the station 1 to the station are as follows:
- From the station 1 to the station 3, we can travel using a local train only. The travel time is 20 minutes.
- From the station 1 to the station 7, we travel from the station 1 to the station 6 by an express train, and transfer to a local train. The travel time is 25 minutes.
- From the station 1 to the station 8, we travel from the station 1 to the station 6 by an express train, and transfer to a semiexpress train. The travel time is 25 minutes.
- From the station 1 to the station 9, we travel from the station 1 to the station 6 by an express train, from the station 6 to the station 8 by a semiexpress train, and from the station 8 to the station 9 by a local train. In total, the travel time is 35 minutes.
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
Example
Input
10 3 5 10 3 5 30 1 6 10
Output
8
样例
10 3 5
10 3 5
30
1
6
10
8