题库练习 New Passenger Trams
← 上一题 下一题 →

A13635 | New Passenger Trams

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

There are many freight trains departing from Kirnes planet every day. One day on that planet consists of $h$ hours, and each hour consists of $m$ minutes, where $m$ is an even number. Currently, there are $n$ freight trains, and they depart every day at the same time: $i$ -th train departs at $h_i$ hours and $m_i$ minutes.

The government decided to add passenger trams as well: they plan to add a regular tram service with half-hour intervals. It means that the first tram of the day must depart at $0$ hours and $t$ minutes, where $0 \le t < {m \over 2}$ , the second tram departs $m \over 2$ minutes after the first one and so on. This schedule allows exactly two passenger trams per hour, which is a great improvement.

To allow passengers to board the tram safely, the tram must arrive $k$ minutes before. During the time when passengers are boarding the tram, no freight train can depart from the planet. However, freight trains are allowed to depart at the very moment when the boarding starts, as well as at the moment when the passenger tram departs. Note that, if the first passenger tram departs at $0$ hours and $t$ minutes, where $t < k$ , then the freight trains can not depart during the last $k - t$ minutes of the day.

![](/uploads/acgo/image/d8a78e20aac778d1_b8c85d71965a.jpeg)A schematic picture of the correct way to run passenger trams. Here $h=2$ (therefore, the number of passenger trams is $2h=4$ ), the number of freight trains is $n=6$ . The passenger trams are marked in red (note that the spaces between them are the same). The freight trains are marked in blue. Time segments of length $k$ before each passenger tram are highlighted in red. Note that there are no freight trains inside these segments. Unfortunately, it might not be possible to satisfy the requirements of the government without canceling some of the freight trains. Please help the government find the optimal value of $t$ to minimize the number of canceled freight trains in case all passenger trams depart according to schedule.

输入格式

The first line of input contains four integers $n$ , $h$ , $m$ , $k$ ( $1 \le n \le 100\,000$ , $1 \le h \le 10^9$ , $2 \le m \le 10^9$ , $m$ is even, $1 \le k \le {m \over 2}$ ) — the number of freight trains per day, the number of hours and minutes on the planet, and the boarding time for each passenger tram.

$n$ lines follow, each contains two integers $h_i$ and $m_i$ ( $0 \le h_i < h$ , $0 \le m_i < m$ ) — the time when $i$ -th freight train departs. It is guaranteed that no freight trains depart at the same time.

输出格式

The first line of output should contain two integers: the minimum number of trains that need to be canceled, and the optimal starting time $t$ . Second line of output should contain freight trains that need to be canceled.

输入输出样例

输入 #1
2 24 60 15
16 0
17 15
输出 #1
0 0
输入 #2
2 24 60 16
16 0
17 15
输出 #2
1 0
2
C++ 编辑器
输入
输出