Description
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.
Input
Output
Sample Input
6 3 1 7 3 4 2 5 1 5 4 6 2 2
Sample Output
6 3 0
Source
RMQ模板题
【代码】
#include<iostream> #include<cstring> #include<cstdio> #include<cmath> #define sz 16 using namespace std; int n,m,l,r,Max,Min,k; int a[50005],stmax[50005][sz],stmin[50005][sz]; int main(){ scanf("%d%d",&n,&m); for (int i=1;i<=n;++i) scanf("%d",&a[i]),stmax[i][0]=stmin[i][0]=a[i]; for (int j=1;j<sz;++j) for (int i=1;i<=n;++i) if (i+(1<<j)-1<=n){ stmax[i][j]=max(stmax[i][j-1],stmax[i+(1<<(j-1))][j-1]); stmin[i][j]=min(stmin[i][j-1],stmin[i+(1<<(j-1))][j-1]); } for (int i=1;i<=m;++i){ scanf("%d%d",&l,&r); if (l>r) swap(l,r); k=floor(log((double)(r-l+1))/log((double)(2))); Max=max(stmax[l][k],stmax[r-(1<<k)+1][k]); Min=min(stmin[l][k],stmin[r-(1<<k)+1][k]); printf("%d\n",Max-Min); } }