博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
B. Karen and Coffee
阅读量:6078 次
发布时间:2019-06-20

本文共 4841 字,大约阅读时间需要 16 分钟。

B. Karen and Coffee
time limit per test 
2.5 seconds
memory limit per test 
512 megabytes
input 
standard input
output 
standard output

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.

  1. The first one recommends brewing the coffee between 91 and 94 degrees, inclusive.
  2. The second one recommends brewing the coffee between 92 and 97 degrees, inclusive.
  3. 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.

  1. The first one, "wikiHow to make Cold Brew Coffee", recommends brewing the coffee at exactly 1 degree.
  2. 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.

题解:

首先预处理出c[i]表示第i位的次数。

然后维护一个线段树,c[i]>=m时就加到线段树里面去。

线段树可以保证这道题目不超时。

#include
#include
#include
#include
#include
#include
using namespace std;int a[500001],mmax,n,m,l;int sgm[1000000],root,lazy[1000000];int ll(int x){ return x<<1;}int rr(int x){ return x<<1|1;}void update(int root,int left,int right,int l,int r,int v){ if(l<=left&&right<=r) { lazy[root]+=v; return; } sgm[root]=sgm[root]+v*(min(r,right)-max(left,l)+1); int m=(left+right)>>1; if(l<=m)update(ll(root),left,m,l,r,v); if(r>m)update(rr(root),m+1,right,l,r,v); return;}int query(int root,int left,int right,int l,int r){ if(l<=left&&right<=r)return sgm[root]+lazy[root]*(right-left+1); if(right
r)return 0; int m=(left+right)>>1; return query(ll(root),left,m,l,r)+query(rr(root),m+1,right,l,r)+lazy[root]*(min(r,right)-max(left,l)+1);}int main(){ int i,j; scanf("%d%d%d",&n,&m,&l); for(i=1;i<=n;i++) { int c,d; scanf("%d%d",&c,&d); mmax=max(mmax,d); a[c]++;a[d+1]--; } for(i=1;i<=mmax;i++) { a[i]=a[i]+a[i-1]; if(a[i]>=m)update(1,1,mmax,i,i,1); } for(i=1;i<=l;i++) { int c,d; scanf("%d%d",&c,&d); printf("%d\n",query(1,1,mmax,c,d)); } return 0;}

 

转载于:https://www.cnblogs.com/huangdalaofighting/p/7042588.html

你可能感兴趣的文章
sublime-text 使用记录
查看>>
Python: 函数与方法的区别 以及 Bound Method 和 Unbound Method
查看>>
从 Google 的一道面试题说起·
查看>>
GitHub采用了新的GraphQL API
查看>>
从责任界定和问题预警角度 解读全栈溯源对DevOps的价值
查看>>
面向桌面开发的Windows Template Studio
查看>>
TriggerMesh开源用于多云环境的Knative Event Sources
查看>>
SSPL的MongoDB再被抛弃,GUN Health也合流PostgreSQL
查看>>
微软表示Edge的性能更优于Chrome和Firefox
查看>>
基于容器服务的持续集成与云端交付(三)- 从零搭建持续交付系统
查看>>
Microsoft使用.NET Core SDK遥测数据
查看>>
《Spark GraphX in Action》书评及作者访谈
查看>>
IBM推出了针对区块链部署的云服务
查看>>
关于5G被激烈讨论的那些争端和冲突
查看>>
使用Apache Spark构建实时分析Dashboard
查看>>
2017年InfoQ最受欢迎30项内容清单
查看>>
OpenAI披露最新研究成果:AI训练如何扩展到更大规模?
查看>>
周下载量过200万的npm包被注入恶意代码,Vue、Node项目恐受影响
查看>>
写给Java工程师的面试指南
查看>>
ASP.NET Core 2.1带来SignalR、Razor类库
查看>>