题库练习 Karen and Coffee
← 上一题 下一题 →

A11022 | Karen and Coffee

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

To stay woke and attentive during classes, Karen needs some coffee!

![](/uploads/acgo/image/936bac7bca7e733f_4de481d216a8.jpeg)Karen, a coffee aficionado, wants to know the optimal temperature for brewing the perfect cup of coffee. Indeed, she has spent some time reading several recipe books, including the universally acclaimed "The Art of the Covfefe".

She knows $n$ coffee recipes. The $i$ -th recipe suggests that coffee should be brewed between $l_{i}$ and $r_{i}$ degrees, inclusive, to achieve the optimal taste.

Karen thinks that a temperature is admissible if at least $k$ recipes recommend it.

Karen has a rather fickle mind, and so she asks $q$ questions. In each question, given that she only wants to prepare coffee with a temperature between $a$ and $b$ , inclusive, can you tell her how many admissible integer temperatures fall within the range?

输入格式

The first line of input contains three integers, $n$ , $k$ ( $1<=k<=n<=200000$ ), and $q$ ( $1<=q<=200000$ ), the number of recipes, the minimum number of recipes a certain temperature must be recommended by to be admissible, and the number of questions Karen has, respectively.

The next $n$ lines describe the recipes. Specifically, the $i$ -th line among these contains two integers $l_{i}$ and $r_{i}$ ( $1<=l_{i}<=r_{i}<=200000$ ), describing that the $i$ -th recipe suggests that the coffee be brewed between $l_{i}$ and $r_{i}$ degrees, inclusive.

The next $q$ lines describe the questions. Each of these lines contains $a$ and $b$ , ( $1<=a<=b<=200000$ ), describing that she wants to know the number of admissible integer temperatures between $a$ and $b$ degrees, inclusive.

输出格式

For each question, output a single integer on a line by itself, the number of admissible integer temperatures between $a$ and $b$ degrees, inclusive.

输入输出样例

输入 #1
3 2 4
91 94
92 97
97 99
92 94
93 97
95 96
90 100
输出 #1
3
3
0
4
输入 #2
2 1 1
1 1
200000 200000
90 100
输出 #2
0
C++ 编辑器
输入
输出