Time Limit: 5000MS | Memory Limit: 65536K | |
Total Submissions: 34306 | Accepted: 16137 | |
Case Time Limit: 2000MS |
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
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.
Output
Sample Input
6 3
1
7
3
4
2
5
1 5
4 6
2 2
Sample Output
6
3
0
Source
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<ctype.h>
#include<stdlib.h>
#include<stdbool.h> #define rep(i,a,b) for(i=(a);i<=(b);i++)
#define clr(x,y) memset(x,y,sizeof(x))
#define sqr(x) (x*x)
#define LL long long int i,j,n,m,x,y,q,maxn,minn,
d[][],f[][]; int min(int a,int b)
{
if(a<b) return a;
return b;
} int max(int a, int b)
{
if(a>b) return a;
return b;
} int RMQ_init()
{
int i; for(j=;(<<j)<=n;j++)
for(i=;i+(<<j)-<=n;i++) {
d[i][j]=min(d[i][j-],d[i+(<<(j-))][j-]);
f[i][j]=max(f[i][j-],f[i+(<<(j-))][j-]);
}
} int RMQ(int L,int R)
{
int k=; while(<<(k+)<=R-L+) k++;
minn=min(d[L][k],d[R-(<<k)+][k]);
maxn=max(f[L][k],f[R-(<<k)+][k]);
} int main()
{
int i; clr(d,);
clr(f,-);
scanf("%d%d",&n,&q);
rep(i,,n) {
scanf("%d",&d[i][]);
f[i][]=d[i][];
} RMQ_init(); while(q--) {
scanf("%d%d",&x,&y);
RMQ(x,y);
printf("%d\n",maxn-minn);
} return ;
}