305457: CF1034D. Intervals of Intervals
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Intervals of Intervals
题意翻译
有n个区间[ai,bi] 定义区间的区间[l,r]的价值是第l个区间到第r个区间的并的长度,找出k 个不同的区间的区间,使得总价值最大。题目描述
Little D is a friend of Little C who loves intervals very much instead of number " $ 3 $ ". Now he has $ n $ intervals on the number axis, the $ i $ -th of which is $ [a_i,b_i] $ . Only the $ n $ intervals can not satisfy him. He defines the value of an interval of intervals $ [l,r] $ ( $ 1 \leq l \leq r \leq n $ , $ l $ and $ r $ are both integers) as the total length of the union of intervals from the $ l $ -th to the $ r $ -th. He wants to select exactly $ k $ different intervals of intervals such that the sum of their values is maximal. Please help him calculate the maximal sum.输入输出格式
输入格式
First line contains two integers $ n $ and $ k $ ( $ 1 \leq n \leq 3 \cdot 10^5 $ , $ 1 \leq k \leq \min\{\frac{n(n+1)}{2},10^9\} $ ) — the number of intervals Little D has and the number of intervals of intervals he will select. Each of the next $ n $ lines contains two integers $ a_i $ and $ b_i $ , the $ i $ -th line of the $ n $ lines describing the $ i $ -th interval ( $ 1 \leq a_i < b_i \leq 10^9 $ ).
输出格式
Print one integer — the maximal sum of values Little D can get.
输入输出样例
输入样例 #1
2 1
1 3
2 4
输出样例 #1
3
输入样例 #2
3 3
1 4
5 7
3 6
输出样例 #2
15