洛谷P2880 [USACO07JAN]平衡的阵容Balanced Lineup

题目背景

题目描述:

每天,农夫 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
RMQ问题。。。

表示只会线段树。。。

这样下去吃枣药丸。。。

附代码:

#include<iostream>
#include<algorithm>
#include<cstdio>
#define LSON rt<<1
#define RSON rt<<1|1
#define DATA1(x) a[x].data1
#define DATA2(x) a[x].data2
#define LSIDE(x) a[x].l
#define RSIDE(x) a[x].r
#define MAXN 50010
using namespace std;
int n,m;
struct node{
       int data1,data2;
       int l,r;
}a[MAXN<<2];
inline int read(){
       int date=0,w=1;char c=0;
       while(c<'0'||c>'9'){if(c=='-')w=-1;c=getchar();}
       while(c>='0'&&c<='9'){date=date*10+c-'0';c=getchar();}
       return date*w;
}
void pushup(int rt){
     DATA1(rt)=max(DATA1(LSON),DATA1(RSON));
     DATA2(rt)=min(DATA2(LSON),DATA2(RSON));
}
void buildtree(int l,int r,int rt){
     int mid;
     LSIDE(rt)=l;
     RSIDE(rt)=r;
     if(l==r){
              DATA1(rt)=DATA2(rt)=read();
              return;
              }
     mid=LSIDE(rt)+RSIDE(rt)>>1;
     buildtree(l,mid,LSON);
     buildtree(mid+1,r,RSON);
     pushup(rt);
}
int query1(int l,int r,int rt){
    int mid,ans=0;
    if(l<=LSIDE(rt)&&RSIDE(rt)<=r)
    return DATA1(rt);
    mid=LSIDE(rt)+RSIDE(rt)>>1;
    if(l<=mid)ans=max(ans,query1(l,r,LSON));
    if(mid<r)ans=max(ans,query1(l,r,RSON));
    return ans;
}
int query2(int l,int r,int rt){
    int mid,ans=2147483647;
    if(l<=LSIDE(rt)&&RSIDE(rt)<=r)
    return DATA2(rt);
    mid=LSIDE(rt)+RSIDE(rt)>>1;
    if(l<=mid)ans=min(ans,query2(l,r,LSON));
    if(mid<r)ans=min(ans,query2(l,r,RSON));
    return ans;
}
int main(){
    int x,y;
    n=read();m=read();
    buildtree(1,n,1);
    while(m--){
               x=read();y=read();
               printf("%d\n",query1(x,y,1)-query2(x,y,1));
               }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值