博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Tyvj1038】忠诚
阅读量:5249 次
发布时间:2019-06-14

本文共 1576 字,大约阅读时间需要 5 分钟。

Description

    老管家是一个聪明能干的人。他为财主工作了整整10年,财主为了让自已账目更加清楚。要求管家每天记k次账,由于管家聪明能干,因而管家总是让财主十分满意。但是由于一些人的挑拨,财主还是对管家产生了怀疑。于是他决定用一种特别的方法来判断管家的忠诚,他把每次的账目按1,2,3…编号,然后不定时的问管家问题,问题是这样的:在a到b号账中最少的一笔是多少?为了让管家没时间作假他总是一次问多个问题。

Input

输入中第一行有两个数m,n表示有m(m<=100000)笔账,n表示有n个问题,n<=100000。

第二行为m个数,分别是账目的钱数
后面n行分别是n个问题,每行有2个数字说明开始结束的账目编号。

Output

输出文件中为每个问题的答案。具体查看样例。

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
/*    线段树,维护区间的最小值 */#include
#include
#include
using namespace std;const int maxn=1000010;int cnt=0;struct treetype{ int lptr,rptr;//左右孩子指针 int Left,Right; //区间[Left,Right) int mn;//区间最小值 }t[maxn*2];int a[maxn];void buildtree(int ll,int rr){ int cur=++cnt; t[cnt].Left=ll; t[cnt].Right=rr; if (rr!=ll+1){ t[cur].lptr=cnt+1; buildtree(ll,(ll+rr)/2); t[cur].rptr=cnt+1; buildtree((ll+rr)/2,rr); t[cur].mn=min(t[t[cur].lptr].mn,t[t[cur].rptr].mn); }else t[cur].mn=a[ll];}int query(int k,int ll,int rr){ if (ll<=t[k].Left && rr>=t[k].Right) return t[k].mn; else { int ans; if (ll<(t[k].Left+t[k].Right)/2) ans=query(t[k].lptr,ll,rr); if (rr>(t[k].Left+t[k].Right)/2) ans=min(ans,query(t[k].rptr,ll,rr)); return ans; //返回区间最小值 }}int main(){ int m,n,x,y; scanf("%d%d",&m,&n); for (int i=1;i<=m;i++) scanf("%d",&a[i]); buildtree(1,m+1); for (int i=1;i<=n;i++){ scanf("%d%d",&x,&y); printf("%d ",query(1,x,y+1)); } return 0;}

 

转载于:https://www.cnblogs.com/liumengyue/p/5127915.html

你可能感兴趣的文章
Silverlight 的菜单控件。(不是 Toolkit的)
查看>>
jquery的contains方法
查看>>
linux后台运行和关闭SSH运行,查看后台任务
查看>>
桥接模式-Bridge(Java实现)
查看>>
303. Range Sum Query - Immutable
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
前台freemark获取后台的值
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>
c++ map
查看>>
exit和return的区别
查看>>
Django 相关
查看>>
比较安全的获取站点更目录
查看>>
空间分析开源库GEOS
查看>>
RQNOJ八月赛
查看>>
前端各种mate积累
查看>>
Python(软件目录结构规范)
查看>>
Windows多线程入门のCreateThread与_beginthreadex本质区别(转)
查看>>
Nginx配置文件(nginx.conf)配置详解1
查看>>