HDU 1754

选最大值。线段树。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <climits>
#include <string.h>
#include <queue>
#include <cmath>
#include <map>
#include <vector>
#define LL  __int64
using namespace std;

const int N=200010;
const int root=1;
struct Node{
	int val,left,right;
}tree[N*4+100];
int n,m;
int score[N],pos[N];

void build(int rt,int l,int r){
	if(l==r){
		tree[rt].val=score[l];
		tree[rt].left=l;
		tree[rt].right=r;
		pos[l]=rt;
		return;
	}
	tree[rt].left=l;
	tree[rt].right=r;
	build(rt*2,l,(r+l)/2);
	build(rt*2+1,(r+l)/2+1,r);
	tree[rt].val=max(tree[rt*2].val,tree[rt*2+1].val);
}

int query(int now,int l,int r){
	int L=tree[now].left ,R=tree[now].right;
	if(l<=L&&r>=R){
		return tree[now].val;
	}
	int m=(L+R)/2;
	if(l>=m+1){
		return query(now*2+1,l,r);
	}
	else if(r<=m) return query(now*2,l,r);
	else{
		return max(query(now*2,l,r),query(now*2+1,l,r));
	}
}

void update(int now,int s){
	tree[now].val=s;
	now/=2;
	while(now>0){
		tree[now].val=max(tree[now*2].val,tree[now*2+1].val);
		now/=2;
	}
}

int main(){
	int p,q; char act;
	while(scanf("%d%d",&n,&m)!=EOF){
		for(int i=1;i<=n;i++)
		scanf("%d",&score[i]);
		getchar();
		build(root,1,n);
		for(int i=1;i<=m;i++){
			scanf("%c%d%d",&act,&p,&q);
			getchar();
//			cout<<act<<p<<q<<endl;
			if(act==‘Q‘){
				printf("%d\n",query(root,p,q));
			}
			else{
				p=pos[p];
				update(p,q);
			}
		}
	}
	return 0;
}

  

时间: 2024-12-28 01:03:03

HDU 1754的相关文章

hdu 1754 I Hate It 线段树 点修改

// hdu 1754 I Hate It 线段树 点修改 // // 不多说,裸的点修改 // // 继续练 #include <algorithm> #include <bitset> #include <cassert> #include <cctype> #include <cfloat> #include <climits> #include <cmath> #include <complex> #i

HDU 1754 I Hate It (线段树 单点更新)

题目链接 中文题意,与上题类似. 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <queue> 5 #include <cstdlib> 6 #include <algorithm> 7 const int maxn = 200000+10; 8 using namespace std; 9 int a[maxn], n, m; 10

hdu 1754:I Hate It(线段树,入门题,RMQ问题)

I Hate It Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 33726    Accepted Submission(s): 13266 Problem Description 很多学校流行一种比较的习惯.老师们很喜欢询问,从某某到某某当中,分数最高的是多少.这让很多学生很反感.不管你喜不喜欢,现在需要你做的是,就是按照老师的要求

HDU 1754 I Hate It 基础线段树

用区间值m表示这段区间的最大值,一直更新这个区间的最大值,很基础的线段树 #include<iostream> #include<stdio.h> using namespace std; #define N 200005 struct node{ int l,r,m; }tree[N*4]; int a[N]; void build(int left,int right,int i){ tree[i].l=left; tree[i].r=right; if(tree[i].l==

hdu 1754 I Hate It 线段树单点更新和区间求和

转载请注明出处:http://blog.csdn.net/u012860063 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1754 参照HH大牛写的额! Problem Description 很多学校流行一种比较的习惯.老师们很喜欢询问,从某某到某某当中,分数最高的是多少. 这让很多学生很反感. 不管你喜不喜欢,现在需要你做的是,就是按照老师的要求,写一个程序,模拟老师的询问.当然,老师有时候需要更新某位同学的成绩. Input 本题目包含多

HDU 1754 I Hate It (线段树)

Problem Description 很多学校流行一种比较的习惯.老师们很喜欢询问,从某某到某某当中,分数最高的是多少. 这让很多学生很反感. 不管你喜不喜欢,现在需要你做的是,就是按照老师的要求,写一个程序,模拟老师的询问.当然,老师有时候需要更新某位同学的成绩. Input 本题目包含多组测试,请处理到文件结束. 在每个测试的第一行,有两个正整数 N 和 M ( 0<N<=200000,0<M<5000 ),分别代表学生的数目和操作的数目. 学生ID编号分别从1编到N. 第二

线段树(单点更新) HDU 1754 I Hate It

题目传送门 1 /* 2 线段树基本功能:区间最大值,修改某个值 3 */ 4 #include <cstdio> 5 #include <cstring> 6 #include <algorithm> 7 #define lson l, m, rt << 1 8 #define rson m+1, r, rt << 1|1 9 10 const int MAX_N = 200000 + 10; 11 int sum[MAX_N<<2

HDU 1754 I Hate It(线段树初步应用)

HDU  1754  I Hate It Description 很多学校流行一种比较的习惯.老师们很喜欢询问,从某某到某某当中,分数最高的是多少. 这让很多学生很反感. 不管你喜不喜欢,现在需要你做的是,就是按照老师的要求,写一个程序,模拟老师的询问.当然,老师有时候需要更新某位同学的成绩. Input 本题目包含多组测试,请处理到文件结束. 在每个测试的第一行,有两个正整数 N 和 M ( 0<N<=200000,0<M<5000 ),分别代表学生的数目和操作的数目. 学生ID

HDU 1754 树状数组 解法

mnesia在频繁操作数据的过程可能会报错:** WARNING ** Mnesia is overloaded: {dump_log, write_threshold},可以看出,mnesia应该是过载了.这个警告在mnesia dump操作会发生这个问题,表类型为disc_only_copies .disc_copies都可能会发生. 如何重现这个问题,例子的场景是多个进程同时在不断地mnesia:dirty_write/2 mnesia过载分析 1.抛出警告是在mnesia 增加dump

【线段树】hdu 1754 I Hate It

[线段树]hdu 1754 I Hate It 题目链接:hdu 1754 I Hate It 题目大意 N个学生的初始成绩已知,操作m次,每次要么将第i个学生的成绩更新,要么查找区间[x,y]的最大成绩. 很显然这是一道线段树,点修改.区间查询,笔者第三道线段树,完全自己敲的,直接AC~(≧▽≦)/~啦啦啦. 如果单纯查找区间最大值,时间复杂度O(N),而线段树O(logN),当查询的次数非常多时,显然后者更高效! 说一下思路 线段树的点修改[点更新]:直接将叶节点更新为输入的数据,对照"敌兵