[HIHO1299]打折机票(线段树)
题目链接:http://hihocoder.com/problemset/problem/1299
线段树,按照t为下标去更新v,更新的时候要保留最大的那个。
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstring>
#include <climits>
#include <complex>
#include <fstream>
#include <cassert>
#include <cstdio>
#include <bitset>
#include <vector>
#include <deque>
#include <queue>
#include <stack>
#include <ctime>
#include <set>
#include <map>
#include <cmath> using namespace std; //kirai²»ÊÇɳ²è£¬²»»áÍü¼ÇÐÞ¸Ämaxn
#define lson l, m, rt << 1
#define rson m + 1, r, rt << 1 | 1
typedef long long ll;
typedef struct Node {
int t, v;
}Node;
const int maxn = ;
int n, m;
int sum[maxn<<]; void pushUP(int rt) {
//modify
sum[rt] = max(sum[rt<<], sum[rt<<|]);
} void build(int l, int r, int rt) {
if(l == r) {
sum[rt] = -;
return;
}
int m = (l + r) >> ;
build(lson);
build(rson);
pushUP(rt);
} void update(int p, int add, int l, int r, int rt) {
if(l == r) {
sum[rt] = max(sum[rt], add);
return;
}
int m = (l + r) >> ;
if(p <= m) {
update(p, add, lson);
}
else {
update(p, add, rson);
}
pushUP(rt);
} int query(int L, int R, int l, int r, int rt) {
if(L <= l && r <= R) {
return sum[rt];
}
int m = (l + r) >> ;
int ret = ;
if(L <= m) {
//modify
ret = max(ret, query(L, R, lson));
}
if(R > m) {
//modify
ret = max(ret, query(L, R, rson));
}
return ret;
} int main() {
// freopen("in", "r", stdin);
while(~scanf("%d%d", &n, &m)) {
int t, v;
build(, n, );
for(int i = ; i < n; i++) {
scanf("%d%d", &t, &v);
update(t, v, , n, );
}
int a, b;
while(m--) {
scanf("%d%d", &a, &b);
int ans = query(a, b, , n, );
if(ans <= ) printf("None\n");
else printf("%d\n", ans);
}
}
return ;
}
#include <bits/stdc++.h>
using namespace std; #define lrt rt << 1
#define rrt rt << 1 | 1
const int maxn = ;
typedef struct Node {
int l, r;
int sum;
}Node;
Node T[maxn<<];
int n, m; void pushUP(int rt) {
T[rt].sum = max(T[lrt].sum, T[rrt].sum);
} void build(int rt, int l, int r) {
T[rt].l = l;
T[rt].r = r;
T[rt].sum = -;
if(l == r) return;
int mid = (l + r) >> ;
build(lrt, l, mid);
build(rrt, mid+, r);
pushUP(rt);
} void update(int rt, int pos, int val) {
if(T[rt].l > pos || T[rt].r < pos) return;
if(T[rt].l <= pos && T[rt].r >= pos) T[rt].sum = max(T[rt].sum, val);
if(T[rt].l == T[rt].r) return;
update(lrt, pos, val);
update(rrt, pos, val);
pushUP(rt);
} int query(int rt, int l, int r) {
int ret = -;
if(T[rt].l > r || T[rt].r < l) return ret;
if(T[rt].l >= l && T[rt].r <= r) return T[rt].sum;
if(T[rt].l == T[rt].r) return ret;
ret = max(ret, query(lrt, l, r));
ret = max(ret, query(rrt, l, r));
return ret;
} int main() {
// freopen("in", "r", stdin);
int a, b;
while(~scanf("%d%d",&n,&m)) {
build(, , n);
for(int i = ; i <= n; i++) {
scanf("%d %d", &a, &b);
update(, a, b);
}
while(m--) {
scanf("%d %d", &a, &b);
int ret = query(, a, b);
if(ret == -) puts("None");
else printf("%d\n", ret);
}
}
return ;
}
[HIHO1299]打折机票(线段树)的更多相关文章
- hihocoder #1299 : 打折机票 线段树
#1299 : 打折机票 题目连接: http://hihocoder.com/problemset/problem/1299 Description 因为思念新宿的"小姐姐"们, ...
- bzoj3932--可持久化线段树
题目大意: 最近实验室正在为其管理的超级计算机编制一套任务管理系统,而你被安排完成其中的查询部分.超级计算机中的 任务用三元组(Si,Ei,Pi)描述,(Si,Ei,Pi)表示任务从第Si秒开始,在第 ...
- codevs 1082 线段树练习 3(区间维护)
codevs 1082 线段树练习 3 时间限制: 3 s 空间限制: 128000 KB 题目等级 : 大师 Master 题目描述 Description 给你N个数,有两种操作: 1:给区 ...
- codevs 1576 最长上升子序列的线段树优化
题目:codevs 1576 最长严格上升子序列 链接:http://codevs.cn/problem/1576/ 优化的地方是 1到i-1 中最大的 f[j]值,并且A[j]<A[i] .根 ...
- codevs 1080 线段树点修改
先来介绍一下线段树. 线段树是一个把线段,或者说一个区间储存在二叉树中.如图所示的就是一棵线段树,它维护一个区间的和. 蓝色数字的是线段树的节点在数组中的位置,它表示的区间已经在图上标出,它的值就是这 ...
- codevs 1082 线段树区间求和
codevs 1082 线段树练习3 链接:http://codevs.cn/problem/1082/ sumv是维护求和的线段树,addv是标记这歌节点所在区间还需要加上的值. 我的线段树写法在运 ...
- PYOJ 44. 【HNSDFZ2016 #6】可持久化线段树
#44. [HNSDFZ2016 #6]可持久化线段树 统计 描述 提交 自定义测试 题目描述 现有一序列 AA.您需要写一棵可持久化线段树,以实现如下操作: A v p x:对于版本v的序列,给 A ...
- CF719E(线段树+矩阵快速幂)
题意:给你一个数列a,a[i]表示斐波那契数列的下标为a[i],求区间对应斐波那契数列数字的和,还要求能够维护对区间内所有下标加d的操作 分析:线段树 线段树的每个节点表示(f[i],f[i-1])这 ...
- 【BZOJ-3779】重组病毒 LinkCutTree + 线段树 + DFS序
3779: 重组病毒 Time Limit: 20 Sec Memory Limit: 512 MBSubmit: 224 Solved: 95[Submit][Status][Discuss] ...
随机推荐
- 【BZOJ】【1004】【HNOI2008】Cards
Burnside/Polya+背包DP 这道题目是等价类计数裸题吧……>_> 题解:http://m.blog.csdn.net/blog/njlcazl_11109/8316340 啊其 ...
- UIFontFamily
Family: Hiragino Kaku Gothic ProN W3 Font: HiraKakuProN-W3 Family: Courier Font: Courier ...
- yii无限极分类
/** * 获取菜单Tree * * @return multitype: */ public function getMenuAllList() { $resArr = $this->getT ...
- swipejs的使用
<div id='slider' class='swipe'> <div class="swipe-wrap"> <div><img sr ...
- [工作积累] Android system dialog with native callback
JNI: invoke java dialog with native callback: store native function address in java, and invoke nati ...
- 用HAProxy和KeepAlived构建高可用的反向代理
用HAProxy和KeepAlived构建高可用的反向代理 用HAProxy和KeepAlived构建高可用的反向代理 前言对于访问量较大的网站来说,随着流量的增加单台服务器已经无法处理所有的请求 ...
- mybatis处理查询map列表属性为null的问题,而导致查询map无该key对象
1.常规处理方法(数据库以mysql为例) IFNULL(m.last_use_time,) ) ) as last_lat if判断是否为null,设置一个默认值. 2.前台jsp页面处理,判断是否 ...
- web访问速度优化分析
请求从发出到接收完成一共经历了DNS Lookup.Connecting.Blocking.Sending.Waiting和Receiving六个阶段,时间共计38ms.请求完成之后是DOM加载和页面 ...
- socket异步通信-如何设置成非阻塞模式、非阻塞模式下判断connect成功(失败)、判断recv/recvfrom成功(失败)、判断send/sendto
socket异步通信-如何设置成非阻塞模式.非阻塞模式下判断connect成功(失败).判断recv/recvfrom成功(失败).判断send/sendto 博客分类: Linux Socket s ...
- 集成 Tomcat 插件到 Eclipse 的过程
Java代码: . 下载 Tomcat Tomcat6,下载地址:http://tomcat.apache.org/download-60.cgi,选择绿色版的 zip 进行下载(目前最新的 Tomc ...