hdu 4417 Super Mario(主席树)

题解:http://www.cnblogs.com/JKAI/p/7389132.html
不看题解想不到怎么做,对主席树理解的好差劲。。
思路:首先要离散化,离散化的排序数组是rec,对于每个询问L,R,H,对于H,只要找到rec[upper_bound(H)],则要求的数字肯定是在rec[1]—rec[upper_bound(H)],然后主席树求在(L,R)区间中,在rec[1]—rec[upper_bound(H)]范围内的数字即可。

#include <bits/stdc++.h>
using namespace std;

const int MAXN = 1e5+10;
int n,m,cnt,root[MAXN],xx,yy;
struct node
{
    int l,r,sum;
}T[MAXN*20];
int num[MAXN];
vector<int> rec;

int getid(int x)
{
    return lower_bound(rec.begin(),rec.end(),x)-rec.begin()+1;
}

void init()
{
    memset(T,0,sizeof(T));
    memset(root,0,sizeof(root));
    rec.clear();
    cnt = 0;
}

void update(int l, int r, int& x, int y, int pos)
{
    T[++cnt] = T[y];
    T[cnt].sum++;
    x = cnt;
    if(l == r) return;
    int mid = (l+r) >> 1;
    if(pos <= mid) update(l,mid,T[x].l,T[y].l,pos);
    else update(mid+1,r,T[x].r,T[y].r,pos);
}

int query(int l, int r, int x, int y)
{
    if(xx > yy) return 0;
    if(l >= xx && r <= yy)
        return T[y].sum - T[x].sum;
    int mid = (l+r) >> 1;
    int ret = 0;
    if(xx <= mid) ret += query(l,mid,T[x].l,T[y].l);
    if(yy > mid) ret += query(mid+1,r,T[x].r,T[y].r);
    return ret;
}

int main()
{
    //freopen("res.txt","w",stdout);
    int t,k;
    scanf("%d",&t);
    for(int tt = 1; tt <= t; ++tt)
    {
        init();
        scanf("%d %d",&n,&m);
        for(int i = 1; i <= n; ++i)
        {
            scanf("%d",&num[i]);
            rec.push_back(num[i]);
        }
        sort(rec.begin(),rec.end());
        rec.erase(unique(rec.begin(),rec.end()),rec.end());
        for(int i = 1; i <= n; ++i)
        {
            update(1,n,root[i],root[i-1],getid(num[i]));
        }
        printf("Case %d:\n",tt);
        for(int i = 1; i <= m; ++i)
        {
            int ll,rr,kk;
            scanf("%d %d %d",&ll,&rr,&kk);
            ++ll;
            ++rr;
            xx = 1;
            yy = upper_bound(rec.begin(),rec.end(),kk) - rec.begin();
            printf("%d\n",query(1,n,root[ll-1],root[rr]));
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值