zoukankan      html  css  js  c++  java
  • 【POJ2104/2761】K-th Number

    Description

    You are working for Macrohard company in data structures department. After failing your previous task about key insertion you were asked to write a new data structure that would be able to return quickly k-th order statistics in the array segment. 
    That is, given an array a[1...n] of different integer numbers, your program must answer a series of questions Q(i, j, k) in the form: "What would be the k-th number in a[i...j] segment, if this segment was sorted?" 
    For example, consider the array a = (1, 5, 2, 6, 3, 7, 4). Let the question be Q(2, 5, 3). The segment a[2...5] is (5, 2, 6, 3). If we sort this segment, we get (2, 3, 5, 6), the third number is 5, and therefore the answer to the question is 5.

    Input

    The first line of the input file contains n --- the size of the array, and m --- the number of questions to answer (1 <= n <= 100 000, 1 <= m <= 5 000). 
    The second line contains n different integer numbers not exceeding 109 by their absolute values --- the array for which the answers should be given. 
    The following m lines contain question descriptions, each description consists of three numbers: i, j, and k (1 <= i <= j <= n, 1 <= k <= j - i + 1) and represents the question Q(i, j, k).

    Output

    For each question output the answer to it --- the k-th number in sorted a[i...j] segment.

    Sample Input

    7 3
    1 5 2 6 3 7 4
    2 5 3
    4 4 1
    1 7 3

    Sample Output

    5
    6
    3

    Hint

    This problem has huge input,so please use c-style input(scanf,printf),or you may got time limit exceed.

    Source

    Northeastern Europe 2004, Northern Subregion
     
    Solution:区间第K大,主席树模板
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <algorithm>
     4 #define N 100000
     5 using namespace std;
     6 int sum[8000010],ls[8000010],rs[8000010],root[N+10],hash[N+10],a[N+10],num[N+10];
     7 int n,m,cnt,size;
     8 int findpos(int x)
     9 {
    10     int l=1,r=cnt,mid;
    11     while (l<=r)
    12     {
    13         mid=(l+r)>>1;
    14         if (hash[mid]<x)    l=mid+1;
    15         else    r=mid-1;
    16     }
    17     return l;
    18 }
    19 
    20 void updata(int l,int r,int x,int &y,int v)
    21 {
    22     y=++size;    sum[y]=sum[x]+1;
    23     if (l==r)    return;
    24     ls[y]=ls[x]; rs[y]=rs[x];
    25     int mid=(l+r)>>1;
    26     if (v<=mid)    updata(l,mid,ls[x],ls[y],v);
    27     else    updata(mid+1,r,rs[x],rs[y],v);
    28 }
    29 
    30 int query(int l,int r,int x,int y,int k)
    31 {
    32     if (l==r)    return l;
    33     int mid=(l+r)>>1;
    34     if (sum[ls[y]]-sum[ls[x]]>=k)    return query(l,mid,ls[x],ls[y],k);
    35     else return query(mid+1,r,rs[x],rs[y],k-(sum[ls[y]]-sum[ls[x]]));
    36 }
    37 
    38 int main()
    39 {
    40     scanf("%d%d",&n,&m);
    41     for (int i=1;i<=n;i++)    
    42     {
    43         scanf("%d",&a[i]);
    44         num[i]=a[i];
    45     }
    46     sort(num+1,num+n+1);
    47     hash[++cnt]=num[1];
    48     for (int i=2;i<=n;i++)    
    49         if (num[i]!=num[i-1])
    50             hash[++cnt]=num[i];
    51     for (int i=1;i<=n;i++)
    52     {
    53         int t=findpos(a[i]);
    54         updata(1,cnt,root[i-1],root[i],t);
    55     }    
    56     for (int i=1;i<=m;i++)
    57     {
    58         int a,b,x,re;
    59         scanf("%d%d%d",&a,&b,&x);
    60         re=query(1,cnt,root[a-1],root[b],x);
    61         printf("%d
    ",hash[re]);
    62     }
    63     return 0;
    64 } 
    View Code
    —Anime Otaku Save The World.
  • 相关阅读:
    110、抽象基类为什么不能创建对象?
    109、什么情况会自动生成默认构造函数?
    108、如果想将某个类用作基类,为什么该类必须定义而非声明?
    107、类如何实现只能静态分配和只能动态分配
    106、C++中的指针参数传递和引用参数传递有什么区别?底层原理你知道吗?
    hdoj--2036--改革春风吹满地(数学几何)
    nyoj--46--最少乘法次数(数学+技巧)
    vijos--P1211--生日日数(纯模拟)
    nyoj--42--一笔画问题(并查集)
    nyoj--49--开心的小明(背包)
  • 原文地址:https://www.cnblogs.com/DMoon/p/5236260.html
Copyright © 2011-2022 走看看