CODFURY - Megatron and his rage


Infuriated by the Decepticons' defeat after a long epic battle with the Autobots, Megatron, in his rage, has decided to destroy all the planets on his way back to Cybertron from Earth. There are multiple planets between Earth and Cybertron, and each planet has some number of Autobots to guard it from him. Since Megatron is low on ammo, he wants to fight as few Autobots as possible on his way back. He can defeat no more than "M" Autobots in total.

You need to find the maximum number of planets he can possibly destroy in his journey.

NOTE: Megatron can start his "destruction spree" from any planet, and can only move to the next planet from the planet he's currently on.

Input

You will receive one integer "T" denoting the number of test cases. (T <= 20)

Then, the next line will contain two non-negative space-separated integers "P" and "M", where P is the number of planets on his way back (P <= 50000) and M is the maximum number of Autobots that Megatron can see (M <= 1000,000).

After that, one line containing P integers separated by a single space will denote the number of Autobots present in each planet. (For each planet there will be no more than 1000 Autobots).

Output

Your output should consist of "T" pairs of space-separated integers, one pair per line, denoting the number of Autobots Megatron will fight and the number of planets he will destroy respectively.

Example

Input:
1
4 50
20 5 23 45

Output:
48 3

Explanation

Megatron starts at planet 1 (with 20 Autobots) and goes to planet 2, then the 3rd planet, at this point, he has seen 48 Autobots, if he decides to go to planet 4 he will see 93 Autobots... so he stops his journey at the 3rd planet.

Megatron, however, could have started at planet 2 with 5 Autobots, then continue up to the 4th planet, then, he would have seen 73 Autobots, but, as he wants to see the minimum Autobots possible and this number of Autobots exceeds what he wants to see, he decides to choose the way from the 1st to the 3rd planet.


hide comments
mkfeuhrer: 2016-06-21 22:32:55

copy paste ALIENS :-P

iamstg: 2016-05-01 22:08:49

Seems like this problem has comparitively stronger test cases than aliens problem coz the code which got accepted in aliens did'nt get AC here unless some modifications were done

gulshan_raj: 2015-11-20 16:01:04

@admin same as alien

Mayank Garg: 2015-09-27 17:04:40

Easy one :) nice way to get 200th green !! :)

maverick_10: 2015-09-26 15:17:18

exactly same as alien at the train CTRL+a->CTRL+c->CTRL+v

anuveshkothari: 2015-07-30 13:33:45

copy paste ALIEN code ..should be removed..

vasayashwanth: 2015-07-15 15:24:35

same to same problem as ALIEN

karthik1997: 2015-07-03 05:31:49

Whooof ac in 1st go :-) nice prob

Vipul Srivastava: 2015-06-29 18:15:36

Easy!!

Last edit: 2015-06-29 18:23:25
kp: 2015-06-27 09:10:19

finally solved it..naive solution wont work


Added by:CSI
Date:2013-09-30
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64