P1440 求m区间内的最小值
2018-06-17 22:33:52来源:未知 阅读 ()
题目描述
一个含有n项的数列(n<=2000000),求出每一项前的m个数到它这个区间内的最小值。若前面的数不足m项则从第1个数开始,若前面没有数则输出0。
输入输出格式
输入格式:第一行两个数n,m。
第二行,n个正整数,为所给定的数列。
输出格式:n行,第i行的一个数ai,为所求序列中第i个数前m个数的最小值。
输入输出样例
6 2 7 8 1 4 3 2
0 7 7 1 1 3
说明
【数据规模】
m≤n≤2000000
单调队列的裸题。
注意判断好队列里面元素的数量
维护递增序列
1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<cmath> 5 #include<map> 6 using namespace std; 7 int h=1,t=1; 8 int a[2000001]; 9 struct node 10 { 11 int q[3000001]; 12 int size() 13 { 14 return t-h; 15 } 16 void popt() 17 { 18 q[t]=0; 19 t--; 20 } 21 void poph() 22 { 23 h++; 24 } 25 int front() 26 { 27 return q[h]; 28 } 29 30 void push(int x) 31 { 32 if(a[x]>=a[q[t]]) 33 { 34 t++; 35 q[t]=x; 36 } 37 else 38 { 39 while(a[x]<a[q[t]]&&t>=h) 40 { 41 q[t]=0; 42 t--; 43 } 44 t++; 45 q[t]=x; 46 } 47 48 } 49 }que; 50 int main() 51 { 52 int n,m,x; 53 scanf("%d%d",&n,&m); 54 que.q[1]=1; 55 for(int i=1;i<=n;i++) 56 { 57 58 scanf("%d",&x); 59 a[i]=x; 60 61 if(i==1) 62 {printf("0\n"); 63 continue;} 64 65 printf("%d\n",a[que.front()]); 66 67 if(que.front()<=i-m) 68 que.poph(); 69 70 71 72 que.push(i); 73 } 74 return 0; 75 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 【题解】P1440 求m区间内的最小值 2019-12-23
- 数位dp 2019-08-26
- 不需要sql进行计算数据的平均值、最大值、最小值、和 2018-06-18
- c#等程序中的关于时间的最大值【DateTime.MaxValue】和最小 2018-06-18
- 23:区间内的真素数 2018-06-17
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash