zoukankan      html  css  js  c++  java
  • 洛谷—— P2880 [USACO07JAN]平衡的阵容Balanced Lineup

    https://www.luogu.org/problemnew/show/P2880

    题目背景

    题目描述:

    每天,农夫 John 的N(1 <= N <= 50,000)头牛总是按同一序列排队. 有一天, John 决定让一些牛们玩一场飞盘比赛. 他准备找一群在对列中为置连续的牛来进行比赛. 但是为了避免水平悬殊,牛的身高不应该相差太大. John 准备了Q (1 <= Q <= 180,000) 个可能的牛的选择和所有牛的身高 (1 <= 身高 <= 1,000,000). 他想知道每一组里面最高和最低的牛的身高差别.

    输入:

    第1行:N,Q

    第2到N+1行:每头牛的身高

    第N+2到N+Q+1行:两个整数A和B,表示从A到B的所有牛。(1<=A<=B<=N)

    输出:

    输出每行一个数,为最大数与最小数的差

    题目描述

    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 ≤ 200,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.

    一个农夫有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.

    输出格式:

    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.

    输入输出样例

    输入样例#1: 复制
    6 3
    1
    7
    3
    4
    2
    5
    1 5
    4 6
    2 2
    输出样例#1: 复制
    6
    3
    0


    ST表维护一个最大最小值就可以了
     1 #include <cstdio>
     2 
     3 #define max(a,b) (a>b?a:b)
     4 #define min(a,b) (a<b?a:b)
     5 
     6 inline void read(int &x)
     7 {
     8     x=0; register char ch=getchar();
     9     for(; ch>'9'||ch<'0'; ) ch=getchar();
    10     for(; ch>='0'&&ch<='9'; ch=getchar()) x=x*10+ch-'0';
    11 }
    12 const int N(5e5+5);
    13 int n,q,t,log2[N];
    14 int st[N][20][2];
    15 
    16 int Presist()
    17 {
    18     read(n),read(q);
    19     for(int i=1; i<=n; ++i)
    20     {
    21         read(st[i][0][0]),
    22         st[i][0][1]=st[i][0][0];
    23         log2[i]=(1<<t+1==i)?++t:t;
    24     }
    25     for(int j=1; 1<<j<=n; ++j)
    26       for(int i=1; i+(1<<j)<=n+1; ++i)
    27           st[i][j][0]=max(st[i][j-1][0],st[i+(1<<j-1)][j-1][0]),
    28           st[i][j][1]=min(st[i][j-1][1],st[i+(1<<j-1)][j-1][1]);
    29     for(int a,b,c,max_,min_; q--; )
    30     {
    31         read(a),read(b);
    32         c=log2[b-a+1];
    33         max_=max(st[a][c][0],st[b-(1<<c)+1][c][0]);
    34         min_=min(st[a][c][1],st[b-(1<<c)+1][c][1]);
    35         printf("%d
    ",max_-min_);
    36     }
    37     return 0;
    38 }
    39 
    40 int Aptal=Presist();
    41 int main(int argc,char**argv){;}
    ——每当你想要放弃的时候,就想想是为了什么才一路坚持到现在。
  • 相关阅读:
    【JVM基础】JVM垃圾回收机制算法
    【java基础】- java双亲委派机制
    Java基础(一)
    JVM
    冷知识: 不会出现OutOfMemoryError的内存区域
    疯狂Java:突破程序员基本功的16课-李刚编著 学习笔记(未完待续)
    nor flash之写保护
    spinor/spinand flash之高频通信延迟采样
    nor flash之频率限制
    使用littlefs-fuse在PC端调试littlefs文件系统
  • 原文地址:https://www.cnblogs.com/Shy-key/p/7795264.html
Copyright © 2011-2022 走看看