[ACM_水题] ZOJ 3714 [Java Beans 环中连续m个数最大值]

简介:


 

 

There are N little kids sitting in a circle, each of them are carrying some java beans in their hand. Their teacher want to select M kids who seated in M consecutive seats and collect java beans from them.

The teacher knows the number of java beans each kids has, now she wants to know the maximum number of java beans she can get from M consecutively seated kids. Can you help her?

Input

There are multiple test cases. The first line of input is an integer T indicating the number of test cases.

For each test case, the first line contains two integers N (1 ≤ N ≤ 200) and M (1 ≤ M ≤ N). Here N and M are defined in above description. The second line of each test case contains N integers Ci (1 ≤ Ci ≤ 1000) indicating number of java beans the ith kid have.

Output

For each test case, output the corresponding maximum java beans the teacher can collect.

Sample Input

2
5 2
7 3 1 3 9
6 6
13 28 12 10 20 75

Sample Output

16
158

Author: FAN, Yuzhe
Contest: The 10th Zhejiang Provincial Collegiate Programming Contest

 

题目大意:有N个人坐成一圈,每个人有Ci个糖果,老师想找M个连续坐的同学中获得最多的糖果,问最多几个?

解题思路:最大连续和问题,这里连续数字个数为M,采用b[i]维护前i个糖果总和,那么求从i+1开始M个的总和就是:b[i+M]-b[i],枚举从i=0到i=N-1求最大值即可。

 

复制代码
 1 #include<iostream>
 2 #include<algorithm>
 3 using namespace std;
 4 int main(){
 5     int T;
 6     cin>>T;
 7     int a[205],b[405];
 8     while(T--){
 9         int N,M;
10         cin>>N>>M;
11         for(int i=0;i<405;i++)b[i]=0;
12         for(int i=0;i<N;i++){
13             cin>>a[i];
14             if(i==0)b[i]=a[i];
15             else b[i]=b[i-1]+a[i];
16         }//边输入边维护一个前i个数之和b[i]
17         for(int i=N;i<2*N;i++){
18             b[i]=b[i-1]+a[i%N];
19         }//继续维护b[i]使之满足一个环遍历的要求
20         int max=-1;
21         for(int i=0;i<N;i++){
22             int sum=b[i+M]-b[i];
23             if(sum>max)max=sum;
24         }//取得长为M的最大连续和
25         cout<<max<<'\n';
26     }return 0;
27 
28 }
复制代码


相关文章
|
1月前
|
存储 算法 Java
Java求数字最大值
Java求数字最大值
|
1月前
|
存储 算法 Java
Java:查找一个给定数组中的最大值和最小值
Java:查找一个给定数组中的最大值和最小值
|
1月前
|
存储 Java 索引
Java找出数组中的最大值和最小值
Java找出数组中的最大值和最小值
37 0
|
3月前
|
Python Java Go
Java每日一练(20230406) 翻转二叉树、接雨水、求平均值、最大值
Java每日一练(20230406) 翻转二叉树、接雨水、求平均值、最大值
47 0
Java每日一练(20230406) 翻转二叉树、接雨水、求平均值、最大值
|
5月前
|
人工智能 算法 Java
ACM模式之输入输出(Java/Python例题)
ACM模式之输入输出(Java/Python例题)
128 0
ACM模式之输入输出(Java/Python例题)
|
11月前
HashMap找最大值对应的哪一个键java
HashMap找最大值对应的哪一个键java
|
Java
Java经典编程习题100例:第14例:定义一个int型的一维数组,包含10个元素,分别赋一些随机整数,然后求出所有元素的最大值, 最小值,平均值,和值,并输出出来
Java经典编程习题100例:第14例:定义一个int型的一维数组,包含10个元素,分别赋一些随机整数,然后求出所有元素的最大值, 最小值,平均值,和值,并输出出来
286 0
|
缓存 算法 Java
ACM中Java输入输出
最初写算法时,是用Scanner的。因为当时接触的测试数据基本都是以算法的复杂度为主,但是后面遇到大量的输入数据时。发现Scanner远远不能满足条件。下面列出几种常用的输入输出方式。(输出统一用printwriter,系统的system.out太慢,结尾要释放缓存才能输出,不然数据放在缓存中输不出来)
146 0
ACM中Java输入输出
ZZULIOJ-1043,最大值(Java)
ZZULIOJ-1043,最大值(Java)
|
Java
ACM - Java实现深度优先遍历和广度优先遍历(二)
ACM - Java实现深度优先遍历和广度优先遍历(二)
164 0
ACM - Java实现深度优先遍历和广度优先遍历(二)