codeforces round #419 B. Karen and Coffee

本文介绍了一个基于线段树的数据结构算法,用于解决如何在不同咖啡冲泡温度建议中找到被多个配方共同推荐的有效温度范围的问题。通过区间更新和查询操作实现了高效计算。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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, nk (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.

 

题解:

开一个线段树区间修改输入的东西,然后从1扫到200000 如果该位>=k就把该位赋为1

询问就是区间查询

水题,乱搞即可

 

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 #define ls (node<<1)
 6 #define rs (node<<1|1)
 7 using namespace std;
 8 const int N=200005;
 9 int Tree[2][N*4],mark[2][N*4];
10 void updata(bool t,int node){
11     Tree[t][node]=Tree[t][ls]+Tree[t][rs];
12 }
13 void pushdown(bool t,int node)
14 {
15     int k=mark[t][node];
16     mark[t][ls]+=k;mark[t][rs]+=k;
17     Tree[t][ls]+=k;Tree[t][rs]+=k;
18     mark[t][node]=0;
19 }
20 void add(bool t,int l,int r,int node,int sa,int se)
21 {
22     if(l>se || r<sa)return ;
23     if(sa<=l && r<=se)
24     {
25         Tree[t][node]++;
26         mark[t][node]++;
27         return ;
28     }
29     pushdown(t,node);
30     int mid=(l+r)>>1;
31     add(t,l,mid,ls,sa,se);
32     add(t,mid+1,r,rs,sa,se);
33     updata(t,node);
34 }
35 int getsum(bool t,int l,int r,int node,int sa,int se)
36 {
37     if(l>se || r<sa)return 0;
38     if(sa<=l && r<=se)return Tree[t][node];
39     int mid=(l+r)>>1;
40     pushdown(t,node);
41     updata(t,node);
42     return getsum(t,l,mid,ls,sa,se)+getsum(t,mid+1,r,rs,sa,se);
43 }
44 int main()
45 {
46     int n,m,q,x,y,tmp;
47     scanf("%d%d%d",&n,&m,&q);
48     for(int i=1;i<=n;i++)
49     {
50         scanf("%d%d",&x,&y);
51         add(0,1,200000,1,x,y);
52     }
53     for(int i=1;i<=200000;i++)
54     {
55         tmp=getsum(0,1,200000,1,i,i);
56         if(tmp>=m)add(1,1,200000,1,i,i);
57     }
58     for(int i=1;i<=q;i++)
59     {
60         scanf("%d%d",&x,&y);
61         printf("%d\n",getsum(1,1,200000,1,x,y));
62     }
63     return 0;
64 }

 

 

 

转载于:https://www.cnblogs.com/Yuzao/p/7044055.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值