HDU 3415(单调队列)

Max Sum of Max-K-sub-sequence

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 4080 Accepted Submission(s): 1453

Problem Description

Given a circle sequence A[1],A[2],A[3]......A[n]. Circle sequence means the left neighbour of A[1] is A[n] , and the right neighbour of A[n] is A[1].
Now your job is to calculate the max sum of a Max-K-sub-sequence. Max-K-sub-sequence means a continuous non-empty sub-sequence which length not exceed K.

 

 

Input

The first line of the input contains an integer T(1<=T<=100) which means the number of test cases.
Then T lines follow, each line starts with two integers N , K(1<=N<=100000 , 1<=K<=N), then N integers followed(all the integers are between -1000 and 1000).

 

 

Output

For each test case, you should output a line contains three integers, the Max Sum in the sequence, the start position of the sub-sequence, the end position of the sub-sequence. If there are more than one result, output the minimum start position, if still more than one , output the minimum length of them.

 

 

Sample Input

4 6 3 6 -1 2 -6 5 -5 6 4 6 -1 2 -6 5 -5 6 3 -1 2 -6 5 -5 6 6 6 -1 -1 -1 -1 -1 -1

 

 

Sample Output

7 1 3 7 1 3 7 6 2 -1 1 1

 1 /*
 2 题目大意:给出一个有N个数字(N<=10^5)的环状序列,让你求一个和最大的连续子序列。这个连续子序列的长度小于等于K。
 3 输出和,起始和结束位置
 4 */
 5 #include<iostream>
 6 #include<queue>
 7 using namespace std;
 8
 9 const int INF = 0x3fffffff;
10 const int maxn = 100010;
11 int num[maxn],sum[maxn];
12
13 int main()
14 {
15     int T,i,j;
16     int N,K,n;
17     cin>>T;
18     while(T--)
19     {
20         cin>>N>>K;
21         sum[0]=0;
22         for(i=1;i<=N;i++)
23         {
24             cin>>num[i];
25             sum[i]=sum[i-1]+num[i];
26         }
27         for(i=N+1;i<N+K;i++)
28         {
29             sum[i]=sum[i-1]+num[i-N];
30         }
31         n=N+K-1;
32         deque <int> q;
33         q.clear();
34         int ans=-INF;
35         int start,end;
36         //枚举以j结尾的区间
37         for(j=1;j<=n;j++)
38         {
39             while(!q.empty() && sum[j-1]<sum[q.back()])
40                 q.pop_back();
41             while(!q.empty() && q.front()<(j-K))//区间最大长度是K ,没有等号,因为入队的是 (j-1)
42                 q.pop_front();
43             q.push_back(j-1);
44             if(sum[j]-sum[q.front()]>ans)
45             {
46                 ans=sum[j]-sum[q.front()];
47        //i到j和是,sum[8] - sum[5] = sum[6]+sum[7]+sum[8]

               start=q.front()+1;
48                 end=j;
49             }
50         }
51         cout<<ans<<" "<<start<<" "<<(end>N?end%N:end)<<endl;
52     }
53     return 0;
54 }////暴力枚举起点和终点估计会超时

 

 

时间: 2024-09-27 10:00:39

HDU 3415(单调队列)的相关文章

算法:uva-1427 Parade (单调队列优化dp)

题意 F城由n+1个横向路和m+1个竖向路组成.你的任务是从最南边的路走到最北边的路,使得走过 的路上的高兴值和最大(注意,一段路上的高兴值可以是负数).同一段路不能经过两次,且不能从北往南 走.另外,在每条横向路上所花的时间不能超过k. 思路 这题在uva和LA上又是不能评测, 于 是在hdu和poj上评测了这题 这题状态比较容易想到, f(i, j)表示走到第i行第j点的最大价值 对于 每一点,可以从下一行的走上来,也可以从左边走过来,也可以从右边走过来 设L(i, j)表示第i行从左边 走

浅谈单调队列、单调栈_C 语言

初谈这个话题,相信许多人会有一种似有所悟,但又不敢确定的感觉.没错,这正是因为其中"单调"一词的存在,所谓单调是什么,学过函数的people都知道单调函数或者函数的单调性,直白一点说单调就是一直增或一直减.例如:1,3,5,9就是一个单调增数列,数列中不存在后一个数比前一个数小的现象.那么同样,在这里谈到的话题也有类似特点. 先说一下单调队列吧!      单调队列,就是一个符合单调性质的队列,它同时具有单调的性质以及队列的性质.他在编程中使用频率不高,但却占有至关重要的地位.它的作用

【POJ 2823 Sliding Window】 单调队列

题目大意:给n个数,一个长度为k(k<n)的闭区间从0滑动到n,求滑动中区间的最大值序列和最小值序列. 最大值和最小值是类似的,在此以最大值为例分析. 数据结构要求:能保存最多k个元素,快速取得最大值,更新时删去"过期"元素和"不再有希望"的元素,安放新元素. 单调队列的基本概念百度百科讲得比较清楚了:http://baike.baidu.com/view/3771451.htm   我的大致思路是: 1. 每个元素存储为结构体,包含它的秩和值.维护最大长度为

POJ题目分类

初期: 一.基本算法:      (1)枚举. (poj1753,poj2965)      (2)贪心(poj1328,poj2109,poj2586)      (3)递归和分治法.      (4)递推.      (5)构造法.(poj3295)      (6)模拟法.(poj1068,poj2632,poj1573,poj2993,poj2996) 二.图算法:      (1)图的深度优先遍历和广度优先遍历.      (2)最短路径算法(dijkstra,bellman-ford

【DP专辑】ACM动态规划总结

转载请注明出处,谢谢.   http://blog.csdn.net/cc_again?viewmode=list          ----------  Accagain  2014年5月15日 动态规划一直是ACM竞赛中的重点,同时又是难点,因为该算法时间效率高,代码量少,多元性强,主要考察思维能力.建模抽象能力.灵活度. 本人动态规划博客地址:http://blog.csdn.net/cc_again/article/category/1261899 ******************

Hackbuteer1的专栏Stay Hungry,Stay Foolish!

转自:http://blog.csdn.net/Hackbuteer1/rss/list [原]九度互动社区IT名企招聘上机考试热身赛 http://ac.jobdu.com/problem.php?id=1326     Waiting in Line   //简单模拟题 #include<iostream> #include<cstdio> using namespace std; #include<memory.h> int pt[1001],leave[1001

UVa 10827:Maximum sum on a torus

题目链接: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=113&page=show_problem&problem=1768 原题: A grid that wraps both horizontally and vertically is called a torus. Given a torus where each cell contains an inte

WCF学习(六):实例

准备技术: WCF服务契约.数据契约等基础知识 Donet基本开发 内容概要: 三种实例激活类型 单调服务 会话服务 单例服务 实例类型 WCF支持三种实例类型:PerCall.PerSession.Single.PerCall就是单调服务会为每次客户端的请求去分配一个新的服务实例:PerSession会为每次客户端连接分配一个实例:Single所有的客户端会去共享一个相同的服务实例. WCF是通过ServiceBehavior特性中的InstanceContextMode属性来告诉服务实例采用

poj分类

初期: 一.基本算法:      (1)枚举. (poj1753,poj2965)      (2)贪心(poj1328,poj2109,poj2586)      (3)递归和分治法.      (4)递推.      (5)构造法.(poj3295)      (6)模拟法.(poj1068,poj2632,poj1573,poj2993,poj2996) 二.图算法:      (1)图的深度优先遍历和广度优先遍历.      (2)最短路径算法(dijkstra,bellman-ford