[线段树]USACO07JAN 平衡的阵容Balanced Lineup

题目传送门:https://www.luogu.org/problemnew/show/P2880


题目描述
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.

每天,农夫 John 的N(1 <= N <= 50,000)头牛总是按同一序列排队. 有一天, John 决定让一些牛们玩一场飞盘比赛. 他准备找一群在对列中为置连续的牛来进行比赛. 但是为了避免水平悬殊,牛的身高不应该相差太大. John 准备了Q (1 <= Q <= 180,000) 个可能的牛的选择和所有牛的身高 (1 <= 身高 <= 1,000,000). 他想知道每一组里面最高和最低的牛的身高差别.

输入格式:
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.

第1行:N,Q;
第2到N+1行:每头牛的身高;
第N+2到N+Q+1行:两个整数A和B,表示从A到B的所有牛。(1<=A<=B<=N)

输出格式:
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.

每行输出一个数,为最大数与最小数的差。


题解:

“区间求某个值” 这一类的问题首选解法当然是线段树树状数组
题目要让我们求一个区间内两个元素最大差,看似无从下手,但是分析一下可以得出最大差不就是最大值减去最小值吗?【惊讶】
那么,这道题就变成一道线段树模板题了。
维护一个线段树,要求查询每个区间的最大值和最小值。


代码:

#include<cstdio>
#include<cstdlib>
#include<algorithm>
#define maxn 60000
#define inf 1000010
using namespace std;
struct node
{
    int l,r,s,t;
    // s=shortest,t=tallest
};
node tree[maxn*4+10];
int a[maxn],n,q;
void build(int p,int x,int y)
{
    //printf("%d %d\n",x,y); 
    int mid=(x+y)>>1;
    tree[p].l=x;
    tree[p].r=y;
    if(x<y)
    {
        build(p<<1,x,mid);
        build(p<<1|1,mid+1,y);
        tree[p].s=min(tree[p<<1].s,tree[p<<1|1].s);
        tree[p].t=max(tree[p<<1].t,tree[p<<1|1].t);
    }
    else
    {
        tree[p].s=tree[p].t=a[x];
        //printf("%d ",a[x]);
    }
}
int queryMax(int p,int x,int y)
{
    if(x<=tree[p].l&&tree[p].r<=y)
    {
        return tree[p].t;
    }
    int mid=(tree[p].l+tree[p].r)>>1,lmax=0,rmax=0;
    if(x<=mid&&y>=tree[p].l)
    {
        lmax=queryMax(p<<1,x,y);
    }
    if(y>mid&&x<=tree[p].r)
    {
        rmax=queryMax(p<<1|1,x,y);
    }
    return max(lmax,rmax);
}

int queryMin(int p,int x,int y)
{
    if(x<=tree[p].l&&tree[p].r<=y)
    {
        return tree[p].s;
    }
    int mid=(tree[p].l+tree[p].r)>>1,lmin=inf,rmin=inf;
    if(x<=mid&&y>=tree[p].l)
    {
        lmin=queryMin(p<<1,x,y);
    }
    if(y>mid&&x<=tree[p].r)
    {
        rmin=queryMin(p<<1|1,x,y);
    }
    return min(lmin,rmin);
}
int main()
{
    scanf("%d%d",&n,&q);
    for(int i=1;i<=n;i++)
    {
        scanf("%d",&a[i]);
    }
    build(1,1,n);
    while(q--)
    {
        int x,y;
        scanf("%d%d",&x,&y);
        printf("%d\n",queryMax(1,x,y)-queryMin(1,x,y));
    }
    return 0;
} 
  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,这是一道经典的单调栈问题。题目描述如下: 有 $n$ 个湖,第 $i$ 个湖有一个高度 $h_i$。现在要在这些湖之间挖一些沟渠,使得相邻的湖之间的高度差不超过 $d$。请问最少需要挖多少个沟渠。 这是一道单调栈的典型应用题。我们可以从左到右遍历湖的高度,同时使用一个单调栈来维护之前所有湖的高度。具体来说,我们维护一个单调递增的栈,栈中存储的是湖的下标。假设当前遍历到第 $i$ 个湖,我们需要在之前的湖中找到一个高度最接近 $h_i$ 且高度不超过 $h_i-d$ 的湖,然后从这个湖到第 $i$ 个湖之间挖一条沟渠。具体的实现可以参考下面的代码: ```c++ #include <cstdio> #include <stack> using namespace std; const int N = 100010; int n, d; int h[N]; stack<int> stk; int main() { scanf("%d%d", &n, &d); for (int i = 1; i <= n; i++) scanf("%d", &h[i]); int ans = 0; for (int i = 1; i <= n; i++) { while (!stk.empty() && h[stk.top()] <= h[i] - d) stk.pop(); if (!stk.empty()) ans++; stk.push(i); } printf("%d\n", ans); return 0; } ``` 这里的关键在于,当我们遍历到第 $i$ 个湖时,所有比 $h_i-d$ 小的湖都可以被舍弃,因为它们不可能成为第 $i$ 个湖的前驱。因此,我们可以不断地从栈顶弹出比 $h_i-d$ 小的湖,直到栈顶的湖高度大于 $h_i-d$,然后将 $i$ 入栈。这样,栈中存储的就是当前 $h_i$ 左边所有高度不超过 $h_i-d$ 的湖,栈顶元素就是最靠近 $h_i$ 且高度不超过 $h_i-d$ 的湖。如果栈不为空,说明找到了一个前驱湖,答案加一。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值