当前位置:网站首页>洛谷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;
}边栏推荐
- 什么是会话劫持以及如何阻止它
- pydev debugger: warning: trying to add breakpoint to file that does not exist: /tmp/xxx
- Wechat Gymnasium Appointment Mini Program Graduation Design Finished Works (7) Mid-term Inspection Report
- 研发运营一体化(DevOps)能力成熟度模型
- 如何减轻企业账户被劫持的攻击?
- 究极异常处理逻辑——多层次异常的处理顺序
- 记一次 .NET 某工控自动化控制系统 卡死分析
- 透过案例看清API接口的作用——演示1688商品详情接口
- golang 源码分析(39)hystrix-go
- 下载mysql的源码包
猜你喜欢

Simulink脚本自动创建Autosar Parameter Port及Mapping

成功部署工业物联网的五个关键

企业云成本管控,你真的做对了吗?

我用这一招让团队的开发效率提升了 100%!

“12306”的架构到底有多牛逼?

【案例】2D变换-旋转动画

NeRF: The Secret of 3D Reconstruction Technology in the Popular Scientific Research Circle

电子行业库存管理痛点与WMS仓储管理系统解决方案

Endanger the safety of common Internet attacks have?

技术人生 | 如何设定业务目标
随机推荐
NeRF: The Secret of 3D Reconstruction Technology in the Popular Scientific Research Circle
Redis总结_实战篇
Playing in the cloud | The key technology of Tianyi cloud object storage ZOS high availability is revealed
golang刷leetcode 经典(3) 设计推特
MySQL LIKE – 语法和用法示例教程
下载mysql的源码包
基于HDF的LED驱动程序开发(1)
监控易火星版即将亮相:分布式运维帮助TOP3000大企业跨越管理鸿沟
pydev debugger: warning: trying to add breakpoint to file that does not exist: /tmp/xxx
LeetCode 2349. 设计数字容器系统(SortedSet)
STL案例-招聘新员工
Wechat Gymnasium Appointment Mini Program Graduation Design Finished Works (7) Mid-term Inspection Report
数据治理:数据集成和应用模式的演进
Smart Microelectronics Releases Low-Power MM32L0130 Series MCU Products
Local broadcast MSE fragments mp4 service
千万级QPS下服务如何才能平滑启动
千万级别的表分页查询非常慢,怎么办?
载20(S)-人参皂苷/细胞穿膜肽-单克隆抗体-载丝裂霉素白蛋白纳米微球的制备
C#里如何简单的校验时间格式
红队实战靶场ATT&CK(一)