CF1307A.Cow and Haybales

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The USA Construction Operation (USACO) recently ordered Farmer John to arrange a row of nn haybale piles on the farm. The ii -th pile contains aia_i haybales.

However, Farmer John has just left for vacation, leaving Bessie all on her own. Every day, Bessie the naughty cow can choose to move one haybale in any pile to an adjacent pile. Formally, in one day she can choose any two indices ii and jj ( 1i,jn1 \le i, j \le n ) such that ij=1|i-j|=1 and ai>0a_i>0 and apply ai=ai1a_i = a_i - 1 , aj=aj+1a_j = a_j + 1 . She may also decide to not do anything on some days because she is lazy.

Bessie wants to maximize the number of haybales in pile 11 (i.e. to maximize a1a_1 ), and she only has dd days to do so before Farmer John returns. Help her find the maximum number of haybales that may be in pile 11 if she acts optimally!

输入格式

The input consists of multiple test cases. The first line contains an integer tt ( 1t1001 \le t \le 100 ) — the number of test cases. Next 2t2t lines contain a description of test cases — two lines per test case.

The first line of each test case contains integers nn and dd ( 1n,d1001 \le n,d \le 100 ) — the number of haybale piles and the number of days, respectively.

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 0ai1000 \le a_i \le 100 ) — the number of haybales in each pile.

输出格式

For each test case, output one integer: the maximum number of haybales that may be in pile 11 after dd days if Bessie acts optimally.

输入输出样例

  • 输入#1

    3
    4 5
    1 0 3 2
    2 2
    100 1
    1 8
    0

    输出#1

    3
    101
    0

说明/提示

In the first test case of the sample, this is one possible way Bessie can end up with 33 haybales in pile 11 :

  • On day one, move a haybale from pile 33 to pile 22
  • On day two, move a haybale from pile 33 to pile 22
  • On day three, move a haybale from pile 22 to pile 11
  • On day four, move a haybale from pile 22 to pile 11
  • On day five, do nothing

In the second test case of the sample, Bessie can do nothing on the first day and move a haybale from pile 22 to pile 11 on the second day.

首页