• 洛谷P2880 Balanced Lineup G


    题目描述

    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

    上代码:

    1. #include
    2. #define N 100010
    3. #define M 1010
    4. #define lson rt << 1
    5. #define rson rt << 1 | 1
    6. using namespace std;
    7. int n, q;
    8. struct node {
    9. int max, min;
    10. }tree[N << 1];
    11. int read() {
    12. int s = 0, f = 0; char ch = getchar();
    13. while (!isdigit(ch)) f |= (ch == '-'), ch = getchar();
    14. while (isdigit(ch)) s = s * 10 + (ch ^ 48), ch = getchar();
    15. return f ? -s : s;
    16. }
    17. void push_up(int rt) {
    18. tree[rt].max = max(tree[lson].max, tree[rson].max);
    19. tree[rt].min = min(tree[lson].min, tree[rson].min);
    20. }
    21. void build(int rt, int l, int r) {
    22. if (l == r) {
    23. tree[rt].max = tree[rt].min = read();
    24. return;
    25. }
    26. int mid = (l + r) >> 1;
    27. build(lson, l, mid);
    28. build(rson, mid + 1, r);
    29. push_up(rt);
    30. }
    31. int query_max(int rt, int l, int r, int L, int R) {
    32. if (L <= l && r <= R) return tree[rt].max;
    33. int mid = (l + r) >> 1, maxn = -1;
    34. if (L <= mid) maxn = max(maxn, query_max(lson, l, mid, L, R));
    35. if (R > mid) maxn = max(maxn, query_max(rson, mid + 1, r, L, R));
    36. return maxn;
    37. }
    38. int query_min(int rt, int l, int r, int L, int R) {
    39. if (L <= l && r <= R) return tree[rt].min;
    40. int mid = (l + r) >> 1, minn = 1e9 + 7;
    41. if (L <= mid) minn = min(minn, query_min(lson, l, mid, L, R));
    42. if (R > mid) minn = min(minn, query_min(rson, mid + 1, r, L, R));
    43. return minn;
    44. }
    45. int main(){
    46. n = read(), q = read();
    47. build(1, 1, n);
    48. for (int i = 1, x, y; i <= q; i++) {
    49. x = read(), y = read();
    50. int ma = query_max(1, 1, n, x, y);
    51. int mi = query_min(1, 1, n, x, y);
    52. printf("%d\n", ma - mi);
    53. }
    54. return 0;
    55. }
  • 相关阅读:
    固定资产管理系统的作用有哪些
    课题学习(二)----倾角和方位角的动态测量方法(基于磁场的测量系统)
    基于Tauri2+Vue3搭建桌面端程序|tauri2+vite5多窗口|消息提醒|托盘闪烁
    含文档+PPT+源码等]精品基于SSM的图书管理系统[包运行成功]计算机Java毕业设计SSM项目源代码
    JAVA String 和 String[][]互转的两种方法
    FFmpeg入门详解之113:live555简介
    JAVA CSS类
    J9数字论:Web3.0对比传统Web2.0的区别
    PRIDE PPP-AR II 软件在 Ubuntu 20.04.5 LTS使用随笔
    12.PGL图学习之项目实践(UniMP算法实现论文节点分类、新冠疫苗项目实战,助力疫情)[系列九]
  • 原文地址:https://blog.csdn.net/lzx_xzl_______/article/details/126052492