hdu - 4325- Flowers - 区间更新,单点查询

题意:http://acm.hdu.edu.cn/showproblem.php?pid=4325

       插入好多条线段,问在某一时刻点有多少条重叠的线段。

解:

       区间更新,单点查询。

做题过程:

       好多天前做的,但是一直T。就放下了。现在看了一看,很明显是对的啊,而且没有犯忘记递归到底层返回的毛病,肿么会T呢?

       一看最后的输出,我当时就傻了,我可是T了很久啊。直接把cout改成了printf,就过了了,还以不到规定时间的1/6.看来,我的能力在一天一天增强啊

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <queue>
#include <set>
#include <vector>
#define maxn 100100
#define lson l, m , rt << 1
#define rson m + 1, r, rt << 1 | 1
#define havem int m = ( l + r ) >> 1;
using namespace std;
int sum[maxn << 2] ,n,q,t,st[maxn],en[maxn],Q[maxn],sumx,all;
int tp[maxn << 1];

void build(int l, int r, int rt){
    sum[rt] = 0;
    if (l == r) return;
    havem;
    build(lson); build(rson);
}
void push_dn(int rt){
    if(sum[rt] != 0){
        sum[rt << 1] += sum[rt];
        sum[rt << 1 | 1] += sum[rt];
        sum[rt] = 0;
    }
}
void update(int &L, int &R, int l, int r, int rt){
    if(L <= l && r <= R){
        sum[rt] ++;     return ;
    }push_dn(rt);//

    havem;
    if(L <= m) update(L,R,lson);
    if(R > m) update(L,R,rson);
}
int query(int &x, int l, int r, int rt){
    if(l == r){
        return sum[rt];
    }push_dn(rt);
    havem;

    if(x <= m) return query(x,lson);
    else return query(x,rson);
}
int main(){
    scanf("%d",&t);
    for(int i = 1; i <= t; i ++){
        printf("Case #%d:\n",i);
        all = 0;

        scanf("%d%d",&n,&q);
        for(int j = 0; j < n; j ++){
            scanf("%d%d",&st[j],&en[j]);
            tp[all ++] = st[j];//用作离散
            tp[all ++] = en[j];
        }
        for(int j = 0; j < q; j ++){
            scanf("%d",&Q[j]); tp[all ++] = Q[j];
        }
        sort(tp,tp + all);
        all = unique(tp,tp + all)- tp;

        build(1,all,1);
        for(int j = 0; j < n; j ++) {
            int a = lower_bound(tp,tp+all,st[j])- tp + 1;
            int b = lower_bound(tp,tp+all,en[j])- tp + 1;
            update(a,b,1,all,1);
        }

        for(int j = 0; j < q; j ++){
            int a = lower_bound(tp,tp+all,Q[j]) - tp + 1;
            printf("%d\n",query(a,1,all,1) );
        }
    }
    return 0;
}


你可能感兴趣的:(hdu - 4325- Flowers - 区间更新,单点查询)