2173 忠诚
时间限制: 1 s
空间限制: 32000 KB
题目等级 : 钻石 Diamond
题目描述 Description
老管家是一个聪明能干的人。他为财主工作了整整10年,财主为了让自已账目更加清楚。要求管家每天记k次账,由于管家聪明能干,因而管家总是让财主十分满意。但是由于一些人的挑拨,财主还是对管家产生了怀疑。于是他决定用一种特别的方法来判断管家的忠诚,他把每次的账目按1,2,3…编号,然后不定时的问管家问题,问题是这样的:在a到b号账中最少的一笔是多少?为了让管家没时间作假他总是一次问多个问题。
输入描述 Input Description
输入中第一行有两个数m,n表示有m笔账,n表示有n个问题。
第二行为m个数,分别是账目的钱数
后面n行分别是n个问题,每行有2个数字说明开始结束的账目编号。
输出描述 Output Description
输出文件中为每个问题的答案。具体查看样例。
样例输入 Sample Input
10 3
1 2 3 4 5 6 7 8 9 10
2 7
3 9
1 10
样例输出 Sample Output
2 3 1
数据范围及提示 Data Size & Hint
m<=100000
n<=100000
线段树:
上一节去下几结min
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
#define N 300006
int a[N],sum[N]; void update(int rt){
sum[rt]=min(sum[rt*],sum[rt*+]);
} void build(int l,int r,int rt){
if(l==r)
{
sum[rt]=a[l];
return;
}
int m=(l+r)/;
build(l,m,rt*);
build(m+,r,rt*+);
update(rt);
}
int ans;
int nowr,nowl; void query(int l,int r,int rt){
if(nowr>=r&&nowl<=l)
{
ans=min(ans,sum[rt]);return ;
}
int m=(r+l)/;
if(nowl<=m)query(l,m,rt*);
if(nowr>m)query(m+,r,rt*+);
} int ans1;
int main(){
int n,m;
scanf("%d%d",&n,&m);
for(int i=;i<=n;i++)
scanf("%d",a+i);
build(,n,);
for(int i=;i<=m;i++){
scanf("%d%d",&nowl,&nowr);
ans=0x7fffffff;
query(,n,);
printf("%d ",ans);//线段树
}
return ;
}