HDUI Hate It(線分ツリーの単点更新、最値検索)
6271 ワード
Problem Descriptionは多くの学校で比較的な習慣が流行している.先生たちは聞くのが好きで、○○から○○までの中で、点数が一番高いのはいくらですか.これは多くの学生に反感を抱かせた.
あなたが喜ぶかどうかにかかわらず、今あなたがしなければならないのは、先生の要求に従って、プログラムを書いて、先生の質問をシミュレートすることです.もちろん、先生はある同級生の成績を更新する必要があることがあります.
Inputこの問題には複数のテストが含まれています.ファイルが終わるまで処理してください.各試験の最初の行には、2つの正の整数NとM(0)がある.
あなたが喜ぶかどうかにかかわらず、今あなたがしなければならないのは、先生の要求に従って、プログラムを書いて、先生の質問をシミュレートすることです.もちろん、先生はある同級生の成績を更新する必要があることがあります.
Inputこの問題には複数のテストが含まれています.ファイルが終わるまで処理してください.各試験の最初の行には、2つの正の整数NとM(0)がある.
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
struct node
{
int left,right,val;
} c[600005];
void build_tree(int l,int r,int root)
{
c[root].left=l;
c[root].right=r;
if(c[root].left==c[root].right)
{
scanf("%d",&c[root].val);
return ;
}
int mid=(c[root].left+c[root].right)/2;
build_tree(l,mid,root*2);
build_tree(mid+1,r,root*2+1);
c[root].val=max(c[root*2].val,c[root*2+1].val) ;
}
void search_tree(int l,int r,int root,int &maxn)
{
if(c[root].left==l&&c[root].right==r)
{
maxn=c[root].val;
return ;
}
int mid=(c[root].left+c[root].right)/2;
if(mid<l)
{
search_tree(l,r,root*2+1,maxn);
}
else if(mid>=r)
{
search_tree(l,r,root*2,maxn);
}
else
{
int maxn1;
int mid=(c[root].left+c[root].right)/2;
search_tree(l,mid,root*2,maxn1);
search_tree(mid+1,r,root*2+1,maxn);
maxn=max(maxn,maxn1);
}
}
void update_tree(int pos,int root,int x)
{
if(c[root].left==c[root].right&&c[root].right==pos)
{
c[root].val=x;
return ;
}
int mid=(c[root].left+c[root].right)/2;
if(pos>mid)
update_tree(pos,root*2+1,x);
else
update_tree(pos,root*2,x);
c[root].val=max(c[root*2].val,c[root*2+1].val);
}
int main()
{
int n,m;
while(~scanf("%d%d",&n,&m))
{
memset(c,0,sizeof(c));
build_tree(1,n,1);
getchar();
for(int i=0; i<m; i++)
{
char str;
scanf("%c",&str);
if(str=='Q')
{
int a,b,maxn;
scanf("%d%d",&a,&b);
getchar();
if(a<b)
search_tree(a,b,1,maxn);
else
search_tree(b,a,1,maxn);
printf("%d
",maxn);
}
else if(str=='U')
{
int a,b;
scanf("%d%d",&a,&b);
getchar();
update_tree(a,1,b);
}
}
}
return 0;
}