시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 256 MB87635371.622%

문제

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 ≤  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 S1, S2, ..., SM (1 = S1 < S2 < ... < SM = N). For each i (1 ≤ 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 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:

  • Semiexpress trains must stop at every station where express trains stop.
  • Semiexpress trains must stop at K 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 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 ≦ i ≦ 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?

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.

입력

Read the following data from the standard input.

  • The first line of input contains three space separated integers N, M, K. This means there are N stations of the JOI Railways, an express train stops at M stations, and a semiexpress train stops at K stations,
  • The second line of input contains three space separated integers A, B, C. This means it takes A, B, C minutes by a local, express, semiexpress train to travel from a station to the next station, respectively.
  • The third line of input contains an integer T. 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 T minutes.
  • The i-th line (1 ≦ i ≦ M) of the following M lines contains an integer Si. This means an express train stops
    at the station Si.

출력

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

제한

All input data satisfy the following conditions.

  • 2  ≤ N ≤ 1 000 000 000.
  • 2 ≤ M ≤ K ≤ 3 000.
  • K ≤ N.
  • 1 ≤ B < C < A ≤ 1 000 000 000.
  • 1 ≤ T ≤ 1018.
  • 1 = S1 < S2 < ... < SM = N.

서브태스크 1 (18점)

  • N ≤ 300.
  • K − M = 2.
  • A ≤ 1 000 000.
  • T ≤ 1 000 000 000.

서브태스크 2 (30점)

  • N ≤ 300.

서브태스크 3 (52점)

There are no additional constraints.

예제 입력 1

10 3 5
10 3 5
30
1
6
10

예제 출력 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:

  • 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.

예제 입력 2

10 3 5
10 3 5
25
1
6
10

예제 출력 2

7

예제 입력 3

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

예제 출력 3

2

예제 입력 4

12 3 4
10 1 2
30
1
11
12

예제 출력 4

8

This sample input does not satisfy the constraints of Subtask 1.

예제 입력 5

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

예제 출력 5

72

This sample input does not satisfy the constraints of Subtask 1.

예제 입력 6

1000000000 2 3000
1000000000 1 2
1000000000
1
1000000000

예제 출력 6

3000

This sample input does not satisfy the constraints of Subtask 1. Also, this sample input does not satisfy the constraints of Subtask 2.

채점 및 기타 정보

  • 예제는 채점하지 않는다.