zoukankan      html  css  js  c++  java
  • 【洛谷】P2880 [USACO07JAN]平衡的阵容Balanced Lineup(st表)

    题目背景

    题目描述:

    每天,农夫 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
    ----------------------------------------------------------------
    分析:用st表分别统计区间最大值与最小值,查询时减一下就可以了。我的代码260ms。
     1 #include <cstdio>
     2 #include <algorithm>
     3 using namespace std;
     4 int maxv[50005][30],minv[50005][30],a[50005],n,q;
     5 void RMQ_init()
     6 {
     7     for(int i=0;i<n;i++)
     8     {
     9         maxv[i][0]=a[i];
    10         minv[i][0]=a[i];
    11     }
    12     for(int j=1;(1<<j)<=n;j++)
    13      for(int i=0;i+(1<<j)<=n;i++)
    14      {
    15          maxv[i][j]=max(maxv[i][j-1],maxv[i+(1<<(j-1))][j-1]);
    16          minv[i][j]=min(minv[i][j-1],minv[i+(1<<(j-1))][j-1]);
    17      }
    18 }
    19 int RMQ(int l,int r)
    20 {
    21     int k=0,bigger,smaller;
    22     while(1<<(k+1)<=r-l+1) k++;
    23     bigger=max(maxv[l][k],maxv[r-(1<<k)+1][k]);
    24     smaller=min(minv[l][k],minv[r-(1<<k)+1][k]);
    25     return bigger-smaller;
    26 }
    27 int main()
    28 {
    29     scanf("%d%d",&n,&q);
    30     for(int i=0;i<n;i++) scanf("%d",&a[i]);
    31     RMQ_init();
    32     for(int i=0;i<q;i++)
    33     {
    34         int a,b;
    35         scanf("%d%d",&a,&b);//我的编号是从0开始的 
    36         printf("%d
    ",RMQ(a-1,b-1));
    37     }
    38     return 0; 
    39 }

    完成了【洛谷】P2880 [USACO07JAN]平衡的阵容Balanced Lineup,打卡

  • 相关阅读:
    python中参数传递之位置传递、关键字传递、包裹传递与解包裹
    Python解决乱码问题
    python beautiful soup库的超详细用法
    jmeter BeanShell断言(一)
    Python requests库如何下载一个图片资源
    关于事件监听机制的总结(Listener和Adapter)
    关于SWT中的Label类和Text类
    关于SWT常用组件(按钮,复选框,单选框(Button类))
    关于SWT/JFace的API文档
    关于在事件代码中如何访问类中的变量
  • 原文地址:https://www.cnblogs.com/noblex/p/7710738.html
Copyright © 2011-2022 走看看