【hdu】 I Hate It(선분 트리, 결점 수정구 구간 최대치)
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <string>
#include <cstring>
#include <cmath>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <stack>
#include <algorithm>
using namespace std;
typedef long long LL;
#define MAXD 10
#define maxn 200010
int n;
int tree[maxn << 2];
void BuildTree(int l,int r,int pos){ //
if(l == r){
scanf("%d",&tree[pos]);
return ;
}
int m = (l + r) >> 1;
BuildTree(l,m,(pos << 1));
BuildTree(m + 1,r,(pos << 1)|1);
tree[pos] = max(tree[pos << 1] , tree[(pos << 1) | 1]);
return ;
}
void UpDate(int aim,int value,int l,int r,int pos){ // , ,
if(l == r){
tree[pos] = value;
return ;
}
int m = (l + r) >> 1;
if(aim <= m) UpDate(aim,value,l,m,pos << 1);
else
UpDate(aim,value,m + 1, r,(pos << 1)|1);
tree[pos] = max(tree[pos << 1] , tree[(pos << 1)|1]);
return ;
}
int Query(int L,int R,int l,int r,int pos){
if(L <= l && r <= R)
return tree[pos];
int m = (l + r) >> 1;
int ans = -1;
if(L <= m)
ans = max(ans,Query(L,R,l,m,pos << 1));
if(m + 1 <= R)
ans = max(ans,Query(L,R,m + 1, r, (pos << 1)|1));
return ans;
}
int main(){
int m;
while(scanf("%d%d",&n,&m) != EOF){
BuildTree(1,n,1);
char str[MAXD];
for(int i = 0 ; i < m ; i++){
scanf("%s",str);
if(str[0] == 'Q'){
int a,b;
scanf("%d%d",&a,&b);
int ans = Query(a,b,1,n,1);
printf("%d
",ans);
}
else if(str[0] == 'U'){
int a,b;
scanf("%d%d",&a,&b);
UpDate(a,b,1,n,1);
}
}
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.