A13899 | Two Editorials
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $l_i$ to $r_i$ . 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 $a_i$ . 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 $a_i$ over all participants is maximized.
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 $l_i$ to $r_i$ . 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 $a_i$ . 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 $a_i$ over all participants is maximized.
输入格式
The first line contains three integers $n, m$ and $k$ ( $1 \le n, m \le 2000$ , $1 \le k \le 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 $l_i$ and $r_i$ ( $1 \le l_i \le r_i \le n$ ) — the segment of tasks the $i$ -th participant is interested in listening to the tutorial to.
The $i$ -th of the next $m$ lines contains two integers $l_i$ and $r_i$ ( $1 \le l_i \le r_i \le 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 $a_i$ 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 $a_i$ 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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted