#D4438. Night Market
Night Market
Night Market
Taro decided to go to the summer festival held at JOI Shrine.
N night shops are open along the way to JOI Shrine. Each night shop is numbered from 1 to N in order, and the fun of playing and the time it takes to play are determined by integers. The fun of playing at night shop i is Ai, and the time it takes to play at night shop i is Bi.
In addition, there is a fireworks display as a summer festival event, and the largest fireworks are launched at time S. Taro wants to see this biggest fireworks.
In order to enjoy both the night shop and the fireworks, Taro decided to make a schedule from the time 0 when he arrives at the summer festival to the time T when the summer festival ends.
Taro selects k (1 ≤ k ≤ N) night stores from the night stores, and determines the time to visit for each by an integer. You cannot choose the same night shop twice. Assuming that the numbers of the selected night shops are y1, y2, ... yk in ascending order and the time to visit the night shop yi is xyi, Taro plays at the night shop yi from the time xyi to the time xyi + Byi.
Taro plays in ascending order of night shop numbers, and cannot play at two night shops at the same time. Also, the time it takes to move between night stores can be ignored.
After the time T, the summer festival ends, so you can't play at the night shop. Also, you cannot see the fireworks while playing at the night shop. However, if time S is the time to start playing or the time to finish playing at a certain night shop, Taro shall be able to see the fireworks.
That is, the schedule must meet the following conditions.
- y1 <y2 <... <yk
- xy1, xy2, ... xyk are integers.
- 0 ≤ xy1 <xy1 + By1 ≤ xy2 <xy2 + By2 ≤ ... ≤ xyk <xyk + Byk ≤ T
- There is no i such that xyi <S <xyi + Byi.
The fun of the selected night shop Let M be the sum of Ay1, Ay2, ... Ayk. Taro wants to make a plan so that M is as large as possible.
input
Read the following input from standard input.
The integers N, T, S are written on the first line of the input, separated by blanks, the number of night shops is N, the time when the summer festival ends is T, and the time when the largest fireworks are launched is S. Represents.
The following N lines contain information about the night shop. The integers Ai and Bi are written on the input i + 1 (1 ≤ i ≤ N) lines, separated by blanks. Indicates that the time is Bi.
It is also guaranteed that one or more appointments can be made for all inputs.
output
Output the integer representing the maximum value of M to the standard output on one line.
Examples
Input
5 20 14 8 9 2 4 7 13 6 3 5 8
Output
16
Input
None
Output
None
inputFormat
input
Read the following input from standard input.
The integers N, T, S are written on the first line of the input, separated by blanks, the number of night shops is N, the time when the summer festival ends is T, and the time when the largest fireworks are launched is S. Represents.
The following N lines contain information about the night shop. The integers Ai and Bi are written on the input i + 1 (1 ≤ i ≤ N) lines, separated by blanks. Indicates that the time is Bi.
It is also guaranteed that one or more appointments can be made for all inputs.
outputFormat
output
Output the integer representing the maximum value of M to the standard output on one line.
Examples
Input
5 20 14 8 9 2 4 7 13 6 3 5 8
Output
16
Input
None
Output
None
样例
5 20 14
8 9
2 4
7 13
6 3
5 8
16