CF1313D.Happy New Year

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Being Santa Claus is very difficult. Sometimes you have to deal with difficult situations.

Today Santa Claus came to the holiday and there were mm children lined up in front of him. Let's number them from 11 to mm . Grandfather Frost knows nn spells. The ii -th spell gives a candy to every child whose place is in the [Li,Ri][L_i, R_i] range. Each spell can be used at most once. It is also known that if all spells are used, each child will receive at most kk candies.

It is not good for children to eat a lot of sweets, so each child can eat no more than one candy, while the remaining candies will be equally divided between his (or her) Mom and Dad. So it turns out that if a child would be given an even amount of candies (possibly zero), then he (or she) will be unable to eat any candies and will go sad. However, the rest of the children (who received an odd number of candies) will be happy.

Help Santa Claus to know the maximum number of children he can make happy by casting some of his spells.

输入格式

The first line contains three integers of nn , mm , and kk ( 1n100000,1m109,1k81 \leq n \leq 100\,000, 1 \leq m \leq 10^9, 1 \leq k \leq 8 ) — the number of spells, the number of children and the upper limit on the number of candy a child can get if all spells are used, respectively.

This is followed by nn lines, each containing integers LiL_i and RiR_i ( 1LiRim1 \leq L_i \leq R_i \leq m ) — the parameters of the ii spell.

输出格式

Print a single integer — the maximum number of children that Santa can make happy.

输入输出样例

  • 输入#1

    3 5 3
    1 3
    2 4
    3 5

    输出#1

    4

说明/提示

In the first example, Santa should apply the first and third spell. In this case all children will be happy except the third.

首页