HDU 1754 I Hate It(单点更新,区间求最大值)
摘要:
题意:n个点m次操作,每次操作给出c,a,b;若c为‘Q’,则查询【a,b】区间最大值;若c为‘U’,将第a个点更新为b;思路:线段树单点更新,区间求极值;#include#include#includeusing namespace std;int n,m;int tree[5000010];in... 阅读全文
posted @ 2015-05-28 11:42 大树置林 阅读(131) 评论(0) 推荐(0) 编辑