CF1132C.Painting the Fence

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You have a long fence which consists of nn sections. Unfortunately, it is not painted, so you decided to hire qq painters to paint it. ii -th painter will paint all sections xx such that lixril_i \le x \le r_i .

Unfortunately, you are on a tight budget, so you may hire only q2q - 2 painters. Obviously, only painters you hire will do their work.

You want to maximize the number of painted sections if you choose q2q - 2 painters optimally. A section is considered painted if at least one painter paints it.

输入格式

The first line contains two integers nn and qq ( 3n,q50003 \le n, q \le 5000 ) — the number of sections and the number of painters availible for hire, respectively.

Then qq lines follow, each describing one of the painters: ii -th line contains two integers lil_i and rir_i ( 1lirin1 \le l_i \le r_i \le n ).

输出格式

Print one integer — maximum number of painted sections if you hire q2q - 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
    
首页