CF1611F.ATM and Students

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Polycarp started working at a bank. He was assigned to monitor the ATM. The ATM initially contains ss rubles.

A queue of nn students lined up to him. Each student wants to either withdraw a certain amount of money or deposit it into an account. If aia_i is positive, then the student credits that amount of money via ATM. Otherwise, the student withdraws ai|a_i| rubles.

In the beginning, the ATM is turned off and an arbitrary number of students are not served. At some point, Polycarp turns on the ATM, which has an initial amount of ss rubles. Then, the remaining students start queueing at the ATM. If at some point in time there is less money in the ATM than the student wants to withdraw, then the student is not served and Polycarp turns off the ATM and does not turn it on anymore.

More formally, the students that are served are forming a contiguous subsequence.

Polycarp wants the ATM to serve the maximum number of students. Help him in this matter. Print the numbers of the first and last student, or determine that he will not be able to serve anyone.

In other words, find such a longest continuous segment of students that, starting with the sum of ss at the ATM, all these students will be served. ATM serves students consistently (i.e. one after another in the order of the queue).

输入格式

The first line of the input contains one integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases.

Each test case consists of two lines. The first one contains integers nn and ss ( 1n21051 \le n \le 2\cdot10^5 ; 0s1090 \le s \le 10^9 ) — the length of the aa array and the initial amount of rubles in the ATM. The second contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 109ai109-10^9 \le a_i \le 10^9 ) — elements of the aa array. Note that aia_i can be zero.

It is guaranteed that the sum of the values nn over all test cases does not exceed 21052\cdot10^5 .

输出格式

Print tt lines, each line must contain the answer to the corresponding set of input data: if the answer exists, print the numbers of the first and last served student. If there is no solution, then print -1 on the line.

If there are several possible answers, print any.

输入输出样例

  • 输入#1

    3
    4 10
    -16 2 -6 8
    3 1000
    -100000 -100000 -100000
    6 0
    2 6 -164 1 -1 -6543

    输出#1

    2 4
    -1
    1 2

说明/提示

In the first test case, the only correct answer is 2 4, since when serving students, the number of rubles at the ATM does not become negative, and this is the maximum number of students that can be served.

In the second test case, the answer is -1, as there is not enough money for any student at the ATM.

In the third test case, the answer can be either 1 2 or 4 5.

首页