#P5785. [SDOI2012] 任务安排

    ID: 6544 远端评测题 1000ms 512MiB 尝试: 0 已通过: 0 难度: 8 上传者: 标签>动态规划 DP2012二分各省省选单调队列山东斜率优化

[SDOI2012] 任务安排

Problem Description

There are nn tasks to be processed on a machine, and they form a sequence. These tasks are numbered from 11 to nn, so the order of the sequence is 1,2,3n1, 2, 3 \cdots n. The nn tasks are divided into several batches, and each batch contains several consecutive tasks. Starting from time 00, the tasks are processed batch by batch. The time required to finish task ii alone is TiT_i. Before each batch starts, the machine needs a startup time ss, and the time needed to finish this batch is the sum of the times of all tasks in the batch.

Note that tasks in the same batch will be completed at the same time. The cost of each task is its completion time multiplied by a cost coefficient CiC_i.

Please determine a batching plan that minimizes the total cost.

Input Format

The first line contains an integer nn. The second line contains an integer ss.

The next nn lines each contain a pair of integers TiT_i and CiC_i, meaning that the time required to finish task ii alone is TiT_i, and its cost coefficient is CiC_i.

Output Format

One line containing an integer, representing the minimum total cost.

5
1
1 3
3 2
4 3
2 3
1 4

153

Hint

Constraints: For 100%100\% of the testdata, 1n3×1051 \le n \le 3 \times 10^5, 1s281 \le s \le 2^8, Ti28\left| T_i \right| \le 2^8, 0Ci280 \le C_i \le 2^8.

Translated by ChatGPT 5