CF1132C.Painting the Fence
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You have a long fence which consists of n sections. Unfortunately, it is not painted, so you decided to hire q painters to paint it. i -th painter will paint all sections x such that li≤x≤ri .
Unfortunately, you are on a tight budget, so you may hire only q−2 painters. Obviously, only painters you hire will do their work.
You want to maximize the number of painted sections if you choose q−2 painters optimally. A section is considered painted if at least one painter paints it.
输入格式
The first line contains two integers n and q ( 3≤n,q≤5000 ) — the number of sections and the number of painters availible for hire, respectively.
Then q lines follow, each describing one of the painters: i -th line contains two integers li and ri ( 1≤li≤ri≤n ).
输出格式
Print one integer — maximum number of painted sections if you hire q−2 painters.
输入输出样例
输入#1
7 5 1 4 4 5 5 6 6 7 3 5
输出#1
7
输入#2
4 3 1 1 2 2 3 4
输出#2
2
输入#3
4 4 1 1 2 2 2 3 3 4
输出#3
3