hdu-4251 The Famous ICPC Team Again(划分树)

题目链接:

The Famous ICPC Team Again

Time Limit: 30000/15000 MS (Java/Others)   

 Memory Limit: 32768/32768 K (Java/Others)


Problem Description
When Mr. B, Mr. G and Mr. M were preparing for the 2012 ACM-ICPC World Final Contest, Mr. B had collected a large set of contest problems for their daily training. When they decided to take training, Mr. B would choose one of them from the problem set. All the problems in the problem set had been sorted by their time of publish. Each time Prof. S, their coach, would tell them to choose one problem published within a particular time interval. That is to say, if problems had been sorted in a line, each time they would choose one of them from a specified segment of the line.

Moreover, when collecting the problems, Mr. B had also known an estimation of each problem’s difficultness. When he was asked to choose a problem, if he chose the easiest one, Mr. G would complain that “Hey, what a trivial problem!”; if he chose the hardest one, Mr. M would grumble that it took too much time to finish it. To address this dilemma, Mr. B decided to take the one with the medium difficulty. Therefore, he needed a way to know the median number in the given interval of the sequence.
 
Input
For each test case, the first line contains a single integer n (1 <= n <= 100,000) indicating the total number of problems. The second line contains n integers xi (0 <= xi <= 1,000,000,000), separated by single space, denoting the difficultness of each problem, already sorted by publish time. The next line contains a single integer m (1 <= m <= 100,000), specifying number of queries. Then m lines follow, each line contains a pair of integers, A and B (1 <= A <= B <= n), denoting that Mr. B needed to choose a problem between positions A and B (inclusively, positions are counted from 1). It is guaranteed that the number of items between A and B is odd.
 
Output
For each query, output a single line containing an integer that denotes the difficultness of the problem that Mr. B should choose.
 
Sample Input
5
5 3 2 4 1
3
1 3
2 4
3 5
5
10 6 4 8 2
3
1 3
2 4
3 5
 
Sample Output
Case 1:
3
3
2
Case 2:
6
6
4
 
题意:
 
给定一个数列,问给定一个区间的中间的那个数是多少;
 
 
思路:
 
划分树的模板题,上一题写了模板就不解释了;
 
 
AC代码:
 
/*
4251    873MS    16072K    1722 B    G++    2014300227
*/
#include <bits/stdc++.h>
using namespace std;
const int N=1e5+4;
typedef long long ll;
int n,m,a[N],sorted[N],k;
int tree[32][N],num[32][N];
void build(int dep,int l,int r)
{
    if(l>=r)return ;
    int mid=(l+r)>>1;
    int lp=l,rp=mid+1,sum=mid-l+1;
    for(int i=l;i<=r;i++)
    {
        if(tree[dep][i]<sorted[mid])sum--;
    }
    for(int i=l;i<=r;i++)
    {
        if(i!=l)num[dep][i]=num[dep][i-1];
        else num[dep][i]=0;
        if(tree[dep][i]<sorted[mid])
        {
            tree[dep+1][lp++]=tree[dep][i];
            num[dep][i]++;
        }
        else if(tree[dep][i]==sorted[mid]&&sum>0)
        {
            tree[dep+1][lp++]=tree[dep][i];
            num[dep][i]++;
            sum--;
        }
        else
        {
            tree[dep+1][rp++]=tree[dep][i];
        }
    }
    build(dep+1,l,mid),
    build(dep+1,mid+1,r);
}
int query(int dep,int l,int r,int ql,int qr,int k)
{
        if(l>=r)return tree[dep][l];
        int mid=(l+r)>>1,s,ss;
        if(l!=ql)
        s=num[dep][ql-1],ss=num[dep][qr]-num[dep][ql-1];
        else s=0,ss=num[dep][qr];
        if(k<=ss)return query(dep+1,l,mid,l+s,l+s+ss-1,k);
        else return query(dep+1,mid+1,r,mid+1+ql-l-s,mid+1+qr-l-s-ss,k-ss);
}
int main()
{
    int cnt=1;
    while(scanf("%d",&n)!=EOF)
    {
        printf("Case %d:
",cnt++);

    for(int i=1;i<=n;i++)
    {
        scanf("%d",&a[i]);
        sorted[i]=tree[0][i]=a[i];
    }
    sort(sorted+1,sorted+n+1);
    scanf("%d",&m);
    build(0,1,n);
    int l,r;
    for(int i=0;i<m;i++)
    {
        scanf("%d%d",&l,&r);
        printf("%d
",query(0,1,n,l,r,(r-l+2)/2));
    }
    }
    return 0;
}
原文地址:https://www.cnblogs.com/zhangchengc919/p/5356850.html