当前位置:网站首页>洛谷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;
}边栏推荐
猜你喜欢
随机推荐
无法超越的100米_百兆以太网传输距离_网线有哪几种?
How can services start smoothly under tens of millions of QPS
C# 术语
Five keys to a successful Industrial IoT deployment
Open Source Summer | [Cloud Native] DevOps (5): Integrating Harbor
数据治理:数据集成和应用模式的演进
2022最新版SSM源码分析:一套教程助你深入理解底层原理,提高核心竞争力!
【软考软件评测师】基于经验的测试技术
POE交换机全方位解读(中)
灵动微电子发布低功耗 MM32L0130 系列 MCU 产品
pydev debugger: warning: trying to add breakpoint to file that does not exist: /tmp/xxx
LiveGBS国标GB/T28181流媒体平台支持主子码流切换主码流stream/streamprofile
golang刷leetcode滑动窗口(9) 颜色分类
TSF微服务治理实战系列(一)——治理蓝图
golang刷leetcode 经典(3) 设计推特
NeRF: The Secret of 3D Reconstruction Technology in the Popular Scientific Research Circle
记一次 .NET 某工控自动化控制系统 卡死分析
新特性解读 | MySQL 8.0 GIPK 不可见主键
研发运营一体化(DevOps)能力成熟度模型
How Tencent architects explained: The principle of Redis high-performance communication (essential version)









