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
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.
Output
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.
Sample Input
6 3
1
7
3
4
2
5
1 5
4 6
2 2
Sample Output
6
3
0
Source
USACO 2007 January Silver
#include<stdio.h>
#include<string.h>
#include<algorithm>
#define INF 0x3f3f3f3f
#define MAX_N 50005
using namespace std;
struct node{int Max,Min;};
node dat[2*MAX_N];
int res[MAX_N];
int N,M;
node make_node(int f,int s){
node t;t.Max=f,t.Min=s;
return t;
};
node build(int k,int l,int r){
if(l==r) return dat[k]=make_node(res[l],res[l]);
int mid=(l+r)>>1;
node t1=build(k*2,l,mid);
node t2=build(k*2+1,mid+1,r);
return dat[k]=make_node(max(t1.Max,t2.Max),min(t1.Min,t2.Min));
}
node query(int a,int b,int k,int l,int r){
if(a>r||b<l) return make_node(-INF,INF);
if(a<=l&&r<=b) return dat[k];
else{
int mid=(l+r)>>1;
node t1=query(a,b,k*2,l,mid);
node t2=query(a,b,k*2+1,mid+1,r);
return make_node(max(t1.Max,t2.Max),min(t1.Min,t2.Min));
}
}
int main()
{
while(scanf("%d%d",&N,&M)!=EOF){
for(int i=1;i<=N;i++)
scanf("%d",&res[i]);
build(1,1,N);
while(M--){
int l,r;
scanf("%d%d",&l,&r);
node t=query(l,r,1,1,N);
printf("%d\n",t.Max-t.Min);
}
}
return 0;
}
本文介绍了一个基于区间查询的数据结构问题,即如何快速找出连续区间内最大值与最小值的差值。通过构建线段树来优化查询效率,适用于大规模数据处理。
1万+

被折叠的 条评论
为什么被折叠?



