码迷,mamicode.com
首页 > 其他好文 > 详细

[bzoj 1636][Usaco2007 Jan]Balanced Lineup

时间:2017-05-27 21:49:41      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:term   blank   balance   最大数   between   ima   ups   eve   ant   

传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=1636

[Usaco2007 Jan]Balanced Lineup

Time Limit: 5 Sec  Memory Limit: 64 MB
Submit: 846  Solved: 607
[Submit][Status][Discuss]

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.

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

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

6 3
1
7
3
4
2
5
1 5
4 6
2 2
 

Sample Input

* 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 Output

6
3
0

裸rmq

 1 #include<cstdio>
 2 #include<cmath>
 3 #define min(a,b) ((a)<(b)?(a):(b))
 4 #define max(a,b) ((a)>(b)?(a):(b))
 5 int n,q;
 6 int st1[50005][20],st2[50005][20];
 7 void init(){
 8     for(int i=1;(1<<i)<=n;i++){
 9         for(int j=1;j+(1<<i)-1<=n;j++){
10             st1[j][i]=min(st1[j][i-1],st1[j+(1<<(i-1))][i-1]);
11             st2[j][i]=max(st2[j][i-1],st2[j+(1<<(i-1))][i-1]);
12         }
13     }
14 }
15 int getans(int l,int r){
16     int t=0;//=log(r-l+1)/log(2);
17     for(;(1<<(t+1))<=r-l+1;t++);
18     int mid = min(st1[l][t],st1[r-(1<<t)+1][t]);
19     int mxd = max(st2[l][t],st2[r-(1<<t)+1][t]);
20     return mxd-mid;
21 }
22 int main(){
23     scanf("%d%d",&n,&q);
24     for(int i=1;i<=n;i++){
25         scanf("%d",&st1[i][0]);
26         st2[i][0]=st1[i][0];
27     }
28     init();
29     for(int i=1;i<=q;i++){
30         int l,r;
31         scanf("%d%d",&l,&r);
32         printf("%d\n",getans(l,r));
33     }
34     return 0;
35 }

一个st表写的都比他们慢,要怀疑人生了。

[bzoj 1636][Usaco2007 Jan]Balanced Lineup

标签:term   blank   balance   最大数   between   ima   ups   eve   ant   

原文地址:http://www.cnblogs.com/kvrmnks/p/6914468.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!