• B. Karen and Coffee


    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<iostream>
    #include<cstdio>
    #include<cstring>
    #include<cmath>
    #include<cstdlib>
    #include<algorithm>
    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<l||left>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
    ",query(1,1,mmax,c,d));
        }
        return 0;
    }
  • 相关阅读:
    STM32启动BOOT0 BOOT1设置方法
    端口映射
    端口映射
    静态路由配置
    静态路由配置
    NETGEAR路由器登录不上 重新获取ip
    NETGEAR路由器登录不上 重新获取ip
    GSM AT指令 SIM900A TC35
    GSM AT指令 SIM900A TC35
    TTP223 触摸按键
  • 原文地址:https://www.cnblogs.com/huangdalaofighting/p/7042588.html
Copyright © 2020-2023  润新知