当前位置:网站首页>洛谷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;
}边栏推荐
- Redis总结_实战篇
- 知识点滴 - 什么是iAP2 (上)
- Taking advantage of cloud-network integration, e-Surfing Cloud has paved the way for digital transformation for government and enterprises
- E-Surfing Cloud 4.0 Distributed Cloud Enables Digital Transformation of Thousands of Industries
- golang刷leetcode 经典(1) LRU缓存机制
- 编译型语言与解释型语言的区别
- Dream weaving prompt information prompt box beautification
- Local broadcast MSE fragments mp4 service
- redis summary_distributed cache
- 共享平台如何提高财务的分账记账效率?
猜你喜欢
随机推荐
究极异常处理逻辑——多层次异常的处理顺序
STL案例-招聘新员工
NIO之Selector执行流程
Gear 月度更新|6 月
查看数据库数据量大小,占用磁盘大小
sed 命令
记一次 .NET 某工控自动化控制系统 卡死分析
CUDA+Pycharm-gpu版本+Anaconda安装
魔豹联盟:佛萨奇2.0dapp系统开发模式详情
白话电子签章原理及风险
POE交换机常见问题解答
数据治理:数据集成和应用模式的演进
编译型语言与解释型语言的区别
影响PoE供电传输距离的除了网线还有啥?
LeetCode 2349. 设计数字容器系统(SortedSet)
阿波罗 planning代码-modules\planning\lattice\trajectory_generation\PiecewiseBrakingTrajectoryGenerator类详解
LiveGBS国标GB/T28181流媒体平台支持主子码流切换主码流stream/streamprofile
大事务故障案例
方法的使用
技术人生 | 如何设定业务目标









