zoukankan      html  css  js  c++  java
  • ZOJ 3714 Java Beans

    Java Beans

    Time Limit: 2 Seconds      Memory Limit: 65536 KB

    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 ≤ MN). 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

    累加java beans的值,注意kids是围成圈的。

     1 #include "stdio.h"
     2 using namespace std;
     3 
     4 int jb[205];
     5 int sum[500];
     6 int main()
     7 {
     8     int ca, n, m, a, max;
     9     scanf("%d", &ca);
    10     while (ca--){
    11         scanf("%d%d", &n, &m);
    12         for (int i = 0; i < n; i++)
    13             scanf("%d", &jb[i]);
    14         sum[0] = jb[0];
    15         for (int i = 1; i < n + m - 1; i++){
    16             sum[i] = sum[i - 1]+jb[i%n];
    17         }
    18         max = sum[m-1];
    19         for (int i = m; i < n + m - 1; i++){
    20             if (sum[i] - sum[i - m]>max) max = sum[i] - sum[i - m];
    21         }
    22         printf("%d
    ", max);
    23     }
    24 }
  • 相关阅读:
    好元素(good)
    三条线 (Standard IO)
    计数排序-自然顺序Comparable
    贪心算法之田忌赛马
    bzoj3400
    bzoj1704
    CF Round #456 (Div. 2)
    LA3029
    bzoj3000
    bzoj3623
  • 原文地址:https://www.cnblogs.com/cumulonimbus/p/5466071.html
Copyright © 2011-2022 走看看