当前位置:网站首页>洛谷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;
}
边栏推荐
- Open Source Summer | [Cloud Native] DevOps (5): Integrating Harbor
- 分布式 | dble 启动的时候做了什么之配置检测
- Endanger the safety of common Internet attacks have?
- golang刷leetcode 经典(5)设计哈希集合
- E-Surfing Cloud 4.0 Distributed Cloud Enables Digital Transformation of Thousands of Industries
- Data Governance: The Evolution of Data Integration and Application Patterns
- golang刷leetcode 经典(1) LRU缓存机制
- golang 源码分析(39)hystrix-go
- 多聚体/壳聚糖修饰白蛋白纳米球/mPEG-HSA聚乙二醇人血清白蛋白纳米球的制备与研究
- STL案例-招聘新员工
猜你喜欢
随机推荐
golang刷leetcode 经典(6) 实现跳表
Enterprise cloud cost control, are you really doing it right?
Gear 月度更新|6 月
golang刷leetcode动态规划(9)不同路径 II
sed 命令
解决多版本jar包冲突问题
方法的使用
百问百答第49期:极客有约——国内可观测领域SaaS产品的发展前景
Taking advantage of cloud-network integration, e-Surfing Cloud has paved the way for digital transformation for government and enterprises
无法超越的100米_百兆以太网传输距离_网线有哪几种?
cache2go-源码阅读
How to ensure the security of smart factories?
MySQL基本查询和运算符
下载mysql的源码包
Data Governance: The Evolution of Data Integration and Application Patterns
今年上半年,我国公路建设总体形势持续向好
面试官:可以谈谈乐观锁和悲观锁吗
Five keys to a successful Industrial IoT deployment
SQL Alias 别名
究极异常处理逻辑——多层次异常的处理顺序