CF1452E.Two Editorials
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Berland regional ICPC contest has just ended. There were m participants numbered from 1 to m , who competed on a problemset of n problems numbered from 1 to n .
Now the editorial is about to take place. There are two problem authors, each of them is going to tell the tutorial to exactly k consecutive tasks of the problemset. The authors choose the segment of k consecutive tasks for themselves independently of each other. The segments can coincide, intersect or not intersect at all.
The i -th participant is interested in listening to the tutorial of all consecutive tasks from li to ri . Each participant always chooses to listen to only the problem author that tells the tutorials to the maximum number of tasks he is interested in. Let this maximum number be ai . No participant can listen to both of the authors, even if their segments don't intersect.
The authors want to choose the segments of k consecutive tasks for themselves in such a way that the sum of ai over all participants is maximized.
输入格式
The first line contains three integers n,m and k ( 1≤n,m≤2000 , 1≤k≤n ) — the number of problems, the number of participants and the length of the segment of tasks each of the problem authors plans to tell the tutorial to.
The i -th of the next m lines contains two integers li and ri ( 1≤li≤ri≤n ) — the segment of tasks the i -th participant is interested in listening to the tutorial to.
输出格式
Print a single integer — the maximum sum of ai over all participants.
输入输出样例
输入#1
10 5 3 1 3 2 4 6 9 6 9 1 8
输出#1
14
输入#2
10 3 3 2 4 4 6 3 5
输出#2
8
输入#3
4 4 1 3 3 1 1 2 2 4 4
输出#3
2
输入#4
5 4 5 1 2 2 3 3 4 4 5
输出#4
8
说明/提示
In the first example the first author can tell the tutorial to problems from 1 to 3 and the second one — from 6 to 8 . That way the sequence of ai will be [3,2,3,3,3] . Notice that the last participant can't listen to both author, he only chooses the one that tells the maximum number of problems he's interested in.
In the second example the first one can tell problems 2 to 4 , the second one — 4 to 6 .
In the third example the first one can tell problems 1 to 1 , the second one — 2 to 2 . Or 4 to 4 and 3 to 3 . Every pair of different problems will get the same sum of 2 .
In the fourth example the first one can tell problems 1 to 5 , the second one — 1 to 5 as well.