【luogu2880】[USACO07JAN]平衡的阵容Balanced Lineup

(http://www.elijahqi.win/2017/07/13/%E3%80%90luogu2880%E3%80%91usaco%E2%80%A6%E5%AE%B9balanced-lineup/%20%E2%80%8E)
题目描述

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
RMQ模板吧

#include
#include
#define N 55000
inline int min(int x,int y){
    return x<y?x:y;
}
inline int max(int x,int y){
    return x>y?x:y;
}
int n,q,fmax[N][250],fmin[N][250];
void rmq(){
    for (int i=1;(1<for (int j=1;j+(1<1<=n;++j){
            fmax[j][i]=max(fmax[j][i-1],fmax[j+(1<<(i-1))][i-1]);
            fmin[j][i]=min(fmin[j][i-1],fmin[j+(1<<(i-1))][i-1]);
        }
    }
}
inline int query(int l,int r){
    int k=0;while ((1<<(k+1))<=(r-l+1))++k;
    return(max(fmax[l][k],fmax[r-(1<1][k])-min(fmin[l][k],fmin[r-(1<1][k])); 
}
int main(){
    freopen("2880.in","r",stdin);
    freopen("2880.out","w",stdout);
    scanf("%d%d",&n,&q);
    int tmp;
    //读入+预处理 
    for (int i=1;i<=n;++i) scanf("%d",&tmp),fmax[i][0]=fmin[i][0]=tmp;
    rmq();
    int l,r;
    for (int i=1;i<=q;++i){
        scanf("%d%d",&l,&r);
        printf("%d\n",query(l,r));
    }
    return 0;
}

你可能感兴趣的:(st表)