当前位置:网站首页>洛谷P2880 Balanced Lineup G
洛谷P2880 Balanced Lineup G
2022-08-02 17:57:00 【CLH_W】
题目描述
For the daily milking, Farmer John's N cows (1 ≤ N ≤ 50,000) always line up in the same order. One day Farmer John decides to organize a game of Ultimate Frisbee with some of the cows. To keep things simple, he will take a contiguous range of cows from the milking lineup to play the game. However, for all the cows to have fun they should not differ too much in height.
Farmer John has made a list of Q (1 ≤ Q ≤ 180,000) potential groups of cows and their heights (1 ≤ height ≤ 1,000,000). For each group, he wants your help to determine the difference in height between the shortest and the tallest cow in the group.
每天,农夫 John 的 n(1\le n\le 5\times 10^4)n(1≤n≤5×104) 头牛总是按同一序列排队。
有一天, John 决定让一些牛们玩一场飞盘比赛。他准备找一群在队列中位置连续的牛来进行比赛。但是为了避免水平悬殊,牛的身高不应该相差太大。John 准备了 q(1\le q\le 1.8\times10^5)q(1≤q≤1.8×105) 个可能的牛的选择和所有牛的身高 h_i(1\le h_i\le 10^6,1\le i\le n)hi(1≤hi≤106,1≤i≤n)。他想知道每一组里面最高和最低的牛的身高差。
输入格式
Line 1: Two space-separated integers, N and Q.
Lines 2..N+1: Line i+1 contains a single integer that is the height of cow i
Lines N+2..N+Q+1: Two integers A and B (1 ≤ A ≤ B ≤ N), representing the range of cows from A to B inclusive.
第一行两个数 n,qn,q。
接下来 nn 行,每行一个数 h_ihi。
再接下来 qq 行,每行两个整数 aa 和 bb,表示询问第 aa 头牛到第 bb 头牛里的最高和最低的牛的身高差。
输出格式
Lines 1..Q: Each line contains a single integer that is a response to a reply and indicates the difference in height between the tallest and shortest cow in the range.
输出共 qq 行,对于每一组询问,输出每一组中最高和最低的牛的身高差。
输入输出样例
输入 #1复制
6 3 1 7 3 4 2 5 1 5 4 6 2 2
输出 #1复制
6 3 0
上代码:
#include<bits/stdc++.h>
#define N 100010
#define M 1010
#define lson rt << 1
#define rson rt << 1 | 1
using namespace std;
int n, q;
struct node {
int max, min;
}tree[N << 1];
int read() {
int s = 0, f = 0; char ch = getchar();
while (!isdigit(ch)) f |= (ch == '-'), ch = getchar();
while (isdigit(ch)) s = s * 10 + (ch ^ 48), ch = getchar();
return f ? -s : s;
}
void push_up(int rt) {
tree[rt].max = max(tree[lson].max, tree[rson].max);
tree[rt].min = min(tree[lson].min, tree[rson].min);
}
void build(int rt, int l, int r) {
if (l == r) {
tree[rt].max = tree[rt].min = read();
return;
}
int mid = (l + r) >> 1;
build(lson, l, mid);
build(rson, mid + 1, r);
push_up(rt);
}
int query_max(int rt, int l, int r, int L, int R) {
if (L <= l && r <= R) return tree[rt].max;
int mid = (l + r) >> 1, maxn = -1;
if (L <= mid) maxn = max(maxn, query_max(lson, l, mid, L, R));
if (R > mid) maxn = max(maxn, query_max(rson, mid + 1, r, L, R));
return maxn;
}
int query_min(int rt, int l, int r, int L, int R) {
if (L <= l && r <= R) return tree[rt].min;
int mid = (l + r) >> 1, minn = 1e9 + 7;
if (L <= mid) minn = min(minn, query_min(lson, l, mid, L, R));
if (R > mid) minn = min(minn, query_min(rson, mid + 1, r, L, R));
return minn;
}
int main(){
n = read(), q = read();
build(1, 1, n);
for (int i = 1, x, y; i <= q; i++) {
x = read(), y = read();
int ma = query_max(1, 1, n, x, y);
int mi = query_min(1, 1, n, x, y);
printf("%d\n", ma - mi);
}
return 0;
}
边栏推荐
- 来亲自手搭一个ResNet18网络
- leetcode:622. 设计循环队列【循环队列板子】
- Code Inspection for DevOps
- 新特性解读 | MySQL 8.0 GIPK 不可见主键
- Playing in the cloud | The key technology of Tianyi cloud object storage ZOS high availability is revealed
- 发挥云网融合优势,天翼云为政企铺设数字化转型跑道
- CWE4.8:2022年危害最大的25种软件安全问题
- 数据治理:数据集成和应用模式的演进
- Smart Microelectronics Releases Low-Power MM32L0130 Series MCU Products
- 玩转云端 | 天翼云对象存储ZOS高可用的关键技术揭秘
猜你喜欢
阿波罗 planning代码-modules\planning\lattice\trajectory_generation\PiecewiseBrakingTrajectoryGenerator类详解
一文看懂推荐系统:概要01:推荐系统的基本概念
pydev debugger: warning: trying to add breakpoint to file that does not exist: /tmp/xxx
Open Source Summer | [Cloud Native] DevOps (5): Integrating Harbor
shell中awk命令的if条件语句引入外置变量
CWE4.8:2022年危害最大的25种软件安全问题
Win11dll文件缺失怎么修复?Win11系统dll文件丢失的解决方法
天翼云4.0分布式云赋能千行百业数字化转型
攻防世界-favorite_number
Smart Microelectronics Releases Low-Power MM32L0130 Series MCU Products
随机推荐
白话电子签章原理及风险
记一次 .NET 某工控自动化控制系统 卡死分析
vulnhub W34kn3ss: 1
IDEA相关配置(特别完整)看完此篇就将所有的IDEA的相关配置都配置好了、设置鼠标滚轮修改字体大小、设置鼠标悬浮提示、设置主题、设置窗体及菜单的字体及字体大小、设置编辑区主题、通过插件更换主题
开源一夏 |【云原生】DevOps(五):集成Harbor
究极异常处理逻辑——多层次异常的处理顺序
STL案例-招聘新员工
手机银行体验性测试:如何获取用户真实感受
解决多版本jar包冲突问题
Interviewer: can you talk about optimistic locking and pessimistic locks
技术人生 | 如何设定业务目标
cache2go-源码阅读
LeetCode 2336. 无限集中的最小数字(SortedSet)
【案例】2D变换-旋转动画
golang刷leetcode滑动窗口(9) 颜色分类
golang刷leetcode 经典(4) 实现跳表
redis总结_多级缓存
MySQL索引
攻防世界-favorite_number
危及安全的常见物联网攻击有哪些?