SPOJ3267 D-query(主席树模版)

题意:

给一个序列,问区间内有多少个不相同的数

思路:

主席树模版,按斌巨的模版写了一发orz

/* ***********************************************
Author        :devil
************************************************ */
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <cmath>
#include <stdlib.h>
using namespace std;
typedef long long LL;
const int inf=0x3f3f3f3f;
const int mod=1e9+7;
const int N=3e4+10;
const int M=N*100;
int n,q,tot,x,y;
int a[N],T[N],ls[M],rs[M],c[M];
int build(int l,int r)
{
    int node=tot++;
    c[node]=0;
    if(l==r) return node;
    int mid=(l+r)>>1;
    ls[node]=build(l,mid);
    rs[node]=build(mid+1,r);
}
int update(int node,int pos,int val)
{
    int newnode=tot++,tmp=newnode;
    c[newnode]=c[node]+val;
    int l=1,r=n;
    while(l<r)
    {
        int mid=(l+r)>>1;
        if(pos<=mid)
        {
            ls[newnode]=tot++;
            rs[newnode]=rs[node];
            newnode=ls[newnode];
            node=ls[node];
            r=mid;
        }
        else
        {
            rs[newnode]=tot++;
            ls[newnode]=ls[node];
            newnode=rs[newnode];
            node=rs[node];
            l=mid+1;
        }
        c[newnode]=c[node]+val;
    }
    return tmp;
}
int query(int node,int pos)
{
    int ret=0,l=1,r=n;
    while(pos<r)
    {
        int mid=(l+r)>>1;
        if(pos<=mid)
        {
            r=mid;
            node=ls[node];
        }
        else
        {
            ret+=c[ls[node]];
            node=rs[node];
            l=mid+1;
        }
    }
    return ret+c[node];
}
int main()
{
    //freopen("in.txt","r",stdin);
    while(~scanf("%d",&n))
    {
        tot=0;
        for(int i=1;i<=n;i++) scanf("%d",&a[i]);
        T[n+1]=build(1,n);
        map<int,int>mp;
        for(int i=n;i>=1;i--)
        {
            if(mp.find(a[i])==mp.end()) T[i]=update(T[i+1],i,1);
            else
            {
                int tmp=update(T[i+1],mp[a[i]],-1);
                T[i]=update(tmp,i,1);
            }
            mp[a[i]]=i;
        }
        scanf("%d",&q);
        while(q--)
        {
            scanf("%d%d",&x,&y);
            printf("%d\n",query(T[x],y));
        }
    }
    return 0;
}
时间: 2024-10-08 17:36:21

SPOJ3267 D-query(主席树模版)的相关文章

[CF893F]Subtree Minimum Query (主席树)

题面: 传送门:http://codeforces.com/problemset/problem/893/F 题目大意:给你一颗有根树,点有权值,问你每个节点的子树中距离其不超过k的点的权值的最小值.(边权均为1,强制在线) Solution 这题很有意思. 我们一般看到这种距离不超过k的题目,第一反应一般是建以深度为下标,以dfs序为时间轴的的主席树. 很不幸,区间最小值并不能通过减去历史状态得出某个子树的状态. 所以说,这题妙在思想的转换. 考虑以dfs序为下标,以深度为时间轴建一颗主席树.

Poj 2104 K-th Number 主席树模版题

题意:离线询问[l,r]区间第k大 题解:模版题,入门题 #include <iostream> #include <cstdio> #include <cmath> #include <algorithm> #include <map> #include <queue> #include <vector> #include <cstring> #include <iomanip> #include

spoj3267 D-query 主席树(可持久化线段树)

题目链接 题意:给n个数,m次查询,求[l,r]之间不重复数的个数. 思路:主席树.用一个map记录每个值在当前操作下最新的位置,从前往后插入主席树.对于查询[l,r],窝们在root[ l ]下查询在r之前的不重复数的个数.详见代码: /********************************************************* file name: spoj3267.cpp author : kereo create time: 2015年04月04日 星期六 14时2

主席树初学 SPOJ3267

别的没管,直接上的kuangbin代码,懂是基本懂了,然而主席树博大精深们还要多多学习. #include <stdio.h> #include <string.h> #include <iostream> #include <algorithm> #include <vector> #include <queue> #include <set> #include <map> #include <stri

【bzoj1803】Spoj1487 Query on a tree III DFS序+主席树

题目描述 You are given a node-labeled rooted tree with n nodes. Define the query (x, k): Find the node whose label is k-th largest in the subtree of the node x. Assume no two nodes have the same labels. 输入 The first line contains one integer n (1 <= n <

【BZOJ1803】Spoj1487 Query on a tree III 主席树+DFS序

[BZOJ1803]Spoj1487 Query on a tree III Description You are given a node-labeled rooted tree with n nodes. Define the query (x, k): Find the node whose label is k-th largest in the subtree of the node x. Assume no two nodes have the same labels. Input

BZOJ_1803_Spoj1487 Query on a tree III_主席树+dfs序

BZOJ_1803_Spoj1487 Query on a tree III_主席树 Description You are given a node-labeled rooted tree with n nodes. Define the query (x, k): Find the node whose label is k-th largest in the subtree of the node x. Assume no two nodes have the same labels. I

bzoj 1803: Spoj1487 Query on a tree III(主席树)

题意 你被给定一棵带点权的n个点的有根数,点从1到n编号. 定义查询 query(x,k): 寻找以x为根的k大点的编号(从小到大排序第k个点) 假设没有两个相同的点权. 输入格式: 第一行为整数n,第二行为点权,接下来n-1行为树边,接下来一行为整数m,下面m行为两个整数x,k,代表query(x,k) 输出格式: m行,输出每次查询的结果. 题解 先一遍dfs,然后建个主席树,带上去直接跑一跑就好了 我忘了注意dfs序的位置和原来的编号……结果调了半天啥都调不出来…… 1 //minamot

PT07J - Query on a tree III DFS序 + 主席树

dfs序编号后跑权值主席树 但写起来是真的麻烦,总是wa,只能拿出模板过了 #include<bits/stdc++.h> const int N = 100001; using namespace std; struct node { int to, ne; } e[N<<1]; int n, m, len, l1, l2; int id[N], rk[N], eid[N], re[N]; int he[N], a[N], b[N]; int val[N << 5],