HDU - 1754 线段树

#include <algorithm>
#include <iostream>
#include<sstream>
#include<cstring>
#include<string>
#include<cstdio>
#include<cctype>
#include<vector>
#include<deque>
#include<map>
#include<set>

#define M 200000
#define inf 0x3f3f3f3f
typedef long long ll;

using namespace std;

struct Data
{
    int max;
    int left, right;
}tree[M*4];
int n, m;
int ans;
int x, y;
char ch;

void built(int l,int r,int k) {
    tree[k].left = l, tree[k].right = r;
    if (l == r) {
        scanf("%d", &tree[k].max);
        return;
    }
    int mid = (l + r) / 2;
    built(l, mid,k*2);
    built(mid + 1, r, k * 2 + 1);
    tree[k].max = max(tree[k * 2].max, tree[k * 2 + 1].max);
}

void search(int k) {
    if (tree[k].left >= x && tree[k].right <= y) {
        ans = max(ans, tree[k].max);
        return;
    }
    int mid = (tree[k].left + tree[k].right) / 2;
    if (x <= mid) search(k * 2);
    if(y>mid) search(k * 2 + 1);
}

void change_inv(int k) {
    if (tree[k].left == tree[k].right) {
        tree[k].max = y;
        return;
    }
    int mid = (tree[k].left + tree[k].right) / 2;
    if (x <= mid) change_inv(k * 2);
    else change_inv(k * 2 + 1);
    tree[k].max = max(tree[k * 2].max, tree[k * 2 + 1].max);
}

int main() {
    while (scanf("%d%d",&n,&m)!=EOF){
        built(1, n, 1);
        while (m--){
            cin >> ch;
            scanf("%d%d", &x, &y);
            if(ch=='Q'){
                ans = 0;
                search(1);
                printf("%d\n", ans);
            }
            else {
                change_inv(1);
            }
        }
    }
    return 0;
}

 

全部评论

相关推荐

昨天 11:51
已编辑
门头沟学院 Java
京东 零售sp 45 本科南昌大学, 研究生西安交通大学
聪明绝顶的一碗饭:我怎么只看到一个选择
点赞 评论 收藏
分享
11-05 18:26
门头沟学院 Java
点赞 评论 收藏
分享
10-24 13:36
门头沟学院 Java
Zzzzoooo:更新:今天下午有hr联系我去不去客户端,拒了
点赞 评论 收藏
分享
10-07 20:48
门头沟学院 Java
听说改名就会有offer:可能是实习上着班想到后面还要回学校给导师做牛马,看着身边都是21-25的年纪,突然emo了了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务