HDU: 4251 유명한 ICPC 팀 다시 (나무 구분)
사고방식: 나 무 를 나누다.
#include <iostream>
#include <string>
#include <cstring>
#include <cctype>
#include <cstdio>
#include <map>
#include <algorithm>
using namespace std;
const int maxn=100005;
struct DivideTree
{
int sorted[maxn],dat[20][maxn];
int toleft[20][maxn];
void build(int c,int L,int R)
{
int mid=(L+R)/2,lsame=mid+1-L,lp=L,rp=mid+1;
for(int i=L; i<mid; ++i)
if(sorted[i]<sorted[mid]) lsame--;
for(int i=L; i<=R; ++i)
{
if(i==L)toleft[c][i]=0;
else toleft[c][i]=toleft[c][i-1];
if(dat[c][i]<sorted[mid])
{
dat[c+1][lp++]=dat[c][i];
toleft[c][i]++;
}
else if(dat[c][i]>sorted[mid])
dat[c+1][rp++]=dat[c][i];
else
{
if(lsame)
{
lsame--;
toleft[c][i]++;
dat[c+1][lp++]=sorted[mid];
}
else
dat[c+1][rp++]=sorted[mid];
}
}
if(L==R) return ;
build(c+1,L,mid);
build(c+1,mid+1,R);
}
int query(int c,int L,int R,int ql,int qr,int k)
{
if(L==R) return dat[c][L];
int mid=(L+R)/2;
int la,lb,ra,rb;
if(L==ql) la=0;
else la=toleft[c][ql-1];
lb=toleft[c][qr];
ra=ql-L-la;
rb=qr+1-L-lb;
int s=lb-la;
if(k<=s) return query(c+1,L,mid,L+la,L+lb-1,k);
else return query(c+1,mid+1,R,mid+1+ra,mid+rb,k-s);
}
};
DivideTree tree;
int main()
{
int n,kase=0;
while(scanf("%d",&n)!=EOF)
{
for(int i=1; i<=n; ++i)
{
scanf("%d",&tree.dat[0][i]);
tree.sorted[i]=tree.dat[0][i];
}
sort(tree.sorted+1,tree.sorted+n+1);
tree.build(0,1,n);
int m;
scanf("%d",&m);
printf("Case %d:
",++kase);
while(m--)
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d
",tree.query(0,1,n,a,b,(b-a)/2+1));
}
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.