CodeForces - 1307A A - Cow and Haybales

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 aiai 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 (1≤i,j≤n1≤i,j≤n) such that |i−j|=1|i−j|=1 and ai>0ai>0 and apply ai=ai−1ai=ai−1, aj=aj+1aj=aj+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 a1a1), and she only has dddays 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!

Input

The input consists of multiple test cases. The first line contains an integer tt (1≤t≤1001≤t≤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 (1≤n,d≤1001≤n,d≤100) — the number of haybale piles and the number of days, respectively.

The second line of each test case contains nn integers a1,a2,…,ana1,a2,…,an (0≤ai≤1000≤ai≤100)  — the number of haybales in each pile.

Output

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

Example

Input

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

Output

3
101
0

Note

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.

Sponsor

判断能移多少到1号位上

直接计算即可

#include
int t;
using namespace std;
void solve(){
    int n, d;
    cin >> n >> d;
    int ans = 0;
    cin >> ans;
    for(int i = 1; i <= n - 1; i++){
        int a;
        cin >> a;
        if((a * i) <= d){
            ans += a;
            d -= a * i;
        }
        else{
            if(d < i)
                continue;
            else{
                ans += d / i;
                d = d % i;
            }
        }
    }
    cout << ans << endl;
}

int main(){
    ios::sync_with_stdio(0);
    cin >> t;
    while(t--){
        solve();
    }

    return 0;
}

 

你可能感兴趣的:(Codeforces)