Max Sum of Max-K-sub-sequence

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

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
 
 #include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
int a[],sum[];
int main()
{
int t,n,k,i,j,ij,m;
scanf("%d",&t);
while(t--)
{
scanf("%d%d",&n,&k);
m=n;
a[]=sum[]=;
for(i=,j=;i<=n;i++,j++)scanf("%d",&a[i]),sum[i]=sum[j]+a[i];
n<<=;
for(ij=;i<=n;i++,j++,ij++)sum[i]=sum[j]+a[ij];
int tail=,top=,maxx=sum[],maxi=,maxj=;
a[tail++]=;
n>>=;
n+=k;
for(i=;i<n;i++)
{
while(tail>top&&i-a[top]>k)top++;
if(maxx<sum[i]-sum[a[top]])
maxx=sum[i]-sum[a[top]],maxi=a[top]+,maxj=i;
while(tail>top&&sum[i]<sum[a[tail-]])tail--;
a[tail++]=i;
}
if(maxj>m)
maxj-=m;
printf("%d %d %d\n",maxx,maxi,maxj);
}
}

最新文章

  1. ASP.NET 5 入门 (3) – Logging
  2. 权限管理AppOpsManager
  3. java抽象类和接口区别
  4. AFTER触发器与INSTEAD OF触发器
  5. Emmet(之前叫Zencoding)插件安装
  6. Magento 的程序架构与流程
  7. oracle for update和for update nowait(for update wait)的区别
  8. java内存模型7-处理器内存模型
  9. Python学习笔记007_图形用户界面[EasyGui][Tkinter]
  10. dojo处理删除操作报错
  11. KNN算法基本实例
  12. Maven的assembly插件实现自定义打包部署(包含依赖jar包)
  13. 【SqlServer】在SqlServer中把数据导入导出为Excel文件
  14. 常州day5
  15. jetBrains 插件开发第一课-- 在主菜单栏新增一个菜单
  16. java 搭建web项目
  17. URAL 1141. RSA Attack(欧拉定理+扩展欧几里得+快速幂模)
  18. mac下安装ionic
  19. restTemplate使用
  20. 数据结构学习-BST二叉查找树 : 插入、删除、中序遍历、前序遍历、后序遍历、广度遍历、绘图

热门文章

  1. JavaScript 30 - 1 学习笔记
  2. 记一次JavaWeb网站技术架构总结
  3. kettle使用正则表达式动态获取excel表
  4. django下进行项目的部署
  5. Chome——扩展程序,获取更多扩展程序报错
  6. 三分钟读懂TT猫分布式、微服务和集群之路
  7. Spring加载properties文件的属性的值
  8. Java 类的热替换 —— 概念、设计与实现
  9. 第1阶段——关于u-boot目标文件start.o中.globl 和.balignl理解(3)
  10. 团队作业4---第一次项目冲刺(ALpha)版本 第七天