码迷,mamicode.com
首页 > 其他好文 > 详细

权值线段树板子题

时间:2019-09-28 21:41:35      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:查询   ace   scanf   权值线段树   names   int   数字   uniq   turn   

 

 

https://www.luogu.org/problem/P1168

#include <bits/stdc++.h>
using namespace std;
const int maxn=1e5+5;
int tree[maxn*4];
int dtc[maxn];
int a[maxn];
void pushup(int root)
{
    tree[root]=tree[root<<1]+tree[root<<1|1];
}
void update(int root,int l,int r,int index) // 将权值线段树上值为index(已离散化)的位置值+1 
{
    if(l==r)
    {
        tree[root]++;
        return;
    }
    int mid=(l+r)/2;
    if(mid>=index)
        update(root<<1,l,mid,index);
    else
        update(root<<1|1,mid+1,r,index);
    pushup(root);
}
int querry(int root,int l,int r,int k) // 查询第k大的数字 
{
    if(l==r)
        return l;
    int mid=(l+r)/2;
    if(tree[root<<1]>=k)
        return querry(root<<1,l,mid,k);
    return querry(root<<1|1,mid+1,r,k-tree[root<<1]);
}
int main()
{
    int n;
    scanf("%d",&n);
    for(int i = 1; i <= n; ++i)
    {
        scanf("%d",&a[i]);
        dtc[i]=a[i];
    }
    sort(a+1,a+1+n);
    int cnt=unique(a+1,a+1+n)-a-1;
    for(int i = 1; i <= n; ++i)
        dtc[i]=lower_bound(a+1,a+1+cnt,dtc[i])-a;
    for(int i = 1; i <= n; ++i)
    {
        update(1,1,n,dtc[i]);
        if(i&1)
        {
            int ans=querry(1,1,n,(i+1)/2);
            printf("%d\n",a[ans]);
        }
    }
    return 0;
}

 

权值线段树板子题

标签:查询   ace   scanf   权值线段树   names   int   数字   uniq   turn   

原文地址:https://www.cnblogs.com/dongdong25800/p/11605007.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!