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

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 li and ri 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?

Input
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 li and ri (1 ≤ li ≤ ri ≤ 200000), describing that the i-th recipe suggests that the coffee be brewed between li and ri 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. Output
For each question, output a single integer on a line by itself, the number of admissible integer temperatures between a and b degrees, inclusive. Examples
Input
3 2 4
91 94
92 97
97 99
92 94
93 97
95 96
90 100
Output
3
3
0
4
Input
2 1 1
1 1
200000 200000
90 100
Output
0
Note
In the first test case, Karen knows 3 recipes. The first one recommends brewing the coffee between 91 and 94 degrees, inclusive.
The second one recommends brewing the coffee between 92 and 97 degrees, inclusive.
The third one recommends brewing the coffee between 97 and 99 degrees, inclusive.
A temperature is admissible if at least 2 recipes recommend it. She asks 4 questions. In her first question, she wants to know the number of admissible integer temperatures between 92 and 94 degrees, inclusive. There are 3: 92, 93 and 94 degrees are all admissible. In her second question, she wants to know the number of admissible integer temperatures between 93 and 97 degrees, inclusive. There are 3: 93, 94 and 97 degrees are all admissible. In her third question, she wants to know the number of admissible integer temperatures between 95 and 96 degrees, inclusive. There are none. In her final question, she wants to know the number of admissible integer temperatures between 90 and 100 degrees, inclusive. There are 4: 92, 93, 94 and 97 degrees are all admissible. In the second test case, Karen knows 2 recipes. The first one, "wikiHow to make Cold Brew Coffee", recommends brewing the coffee at exactly 1 degree.
The second one, "What good is coffee that isn't brewed at at least 36.3306 times the temperature of the surface of the sun?", recommends brewing the coffee at exactly 200000 degrees.
A temperature is admissible if at least 1 recipe recommends it. In her first and only question, she wants to know the number of admissible integer temperatures that are actually reasonable. There are none.

【题意】:给你n个可重叠区间和一个参考值k,然后进行q次询问,每次询问也是一个区间,问你该区间中有多少个整数在n个区间中出现次数>=k

#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<vector>
#include<queue>
#include<map>
#include<set>
#include<ctime>
#include<bits/stdc++.h>
using namespace std;
const int maxn=200005;
typedef long long ll;
int p[maxn];
int x[maxn];
/*
给你n个可重叠区间和一个参考值k,然后进行q次询问,每次询问也是一个区间,问你该区间中有多少个整数在n个区间中出现次数>=k
*/
int n,k,q; int main()
{
while(~scanf("%d%d%d",&n,&k,&q))
{
int a,b;
memset(p,0,sizeof(p));
memset(x,0,sizeof(x)); for(int i=0;i<n;i++)
{
scanf("%d %d",&a, &b); //差分标记
p[a]++;
p[b+1]--;
}
for(int i=1;i<maxn;i++)
{
p[i] += p[i-1]; //前缀和覆盖求新数组 ,复原——利用A[I]-A[I-1]=P[I],可以推得P[I]+A[I-1]=A[I]、因为P[I-1]已被复原为A[I-1],所以得到此递推公式)
}
for(int i=0;i<maxn;i++)
{
if(p[i]<k) p[i]=0;
else p[i]=1; //该区间中有多少个整数在n个区间中出现次数>=k
}
int sum=0;
for(int i=0;i<maxn;i++) //前缀和统计合法(合法的标记为1、不合法的为0则省略
{
sum+=p[i];
x[i]=sum;
}
while(q--)
{
int l,r;
scanf("%d %d",&l,&r);
printf("%d\n",x[r]-x[l-1]); //差分O(1)查询答案
}
}
}

最新文章

  1. servlet中用注解的方式读取web.xml中的配置信息
  2. HEVC学习之一编码框架
  3. 图片ping、JSONP和CORS跨域
  4. Web Server 使用WebClient 发送https请求 The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel
  5. 小白日记45:kali渗透测试之Web渗透-SqlMap自动注入(三)-sqlmap参数详解-Optimization,Injection,Detection,Techniques,Fingerprint
  6. 20171107--SQL变量,运算符,存储过程
  7. Python开发【第一篇】Python基础之装饰器
  8. VBA在Excel中的应用(一):改变符合条件单元格的背景颜色
  9. dsp与sem的互补以及技术实现
  10. bzoj1049
  11. 查看当前linux系统位数
  12. BZOJ 1875: [SDOI2009]HH去散步( dp + 矩阵快速幂 )
  13. Android中贝塞尔曲线的绘制方法
  14. [js高手之路]封装运动框架实战左右与上下滑动的焦点轮播图
  15. jQuery 写的textarea输入字数限制
  16. Facebook授权登录
  17. c++入门之浅入浅出类——分享给很多想形象理解的人
  18. MIPI协议学习总结(一)
  19. 数据库应用(Mysql、Mongodb、Redis、Memcached、CouchDB、Cassandra)
  20. [转载]C#委托与事件--简单笔记

热门文章

  1. 使用锚点在HTML页面中快速移动
  2. 【bzoj3000】Big Number 数论
  3. bzoj4589 FWT xor版本
  4. java实现极简的LRU算法
  5. tomcat部署多个项目,通过域名解析访问不同的网站
  6. 51Nod 1421
  7. 51nod 1040 最大公约数之和
  8. 【POJ 1719】 Shooting Contest (二分图匹配)
  9. NYOJ 42 一笔画问题 (并查集+欧拉回路 )
  10. [bzoj2002][Hnoi2010]Bounce弹飞绵羊——分块