WACHOVIA - Wachovia Bank


Danilo Gheyi is a renowned bank robber. He is known worldwide for accomplishing the most profitable bank robbery, in Fortaleza, Ceará. Danilo and his friends dug a tunnel to get into the main chest. There were some bags, with different amounts of money or jewelry and weight. They had to leave about 50% of the total value, since the truck couldn't carry all the bags.

Danilo wasn't caught, and to show that he can do itall again, he is planning a robbery to one of the safer banks in USA -the Wachovia Bank. He wants your help to maximize the amount stolen, avoiding a huge loss as it happened in Fortaleza.

Write a program that, given the maximum weight the truck is ableto carry and the information about each bag in the bank, determine the maximum value that Danilo can steal.

Input

The input consists of several instances. There is an integer N (1 ≤ N ≤ 200) in the first line; it stands for the number of instances. The first line of each instance contains two integers, K and M (8 ≤ K ≤ 1000 and 1 ≤ M ≤ 50) representing, respectively, the maximum weight the truck can handle and the amount of bags in the bank. The next M lines describe each bag with two integers A and B (8 ≤ A ≤ 200 and 1 ≤ B ≤ 25): the weight and the value of the bag, respectively.

Output

For each instance output a sentence “Hey stupid robber, you can get P.”, and P represents the maximum value Danilo can steal.

Example

Input:
3
34 5
178 12
30 1
13 7
34 8
87 6
900 1
900 25
100 10
27 16
131 9
132 17
6 5
6 23
56 21
100 25
1 25
25 25
100 2

Output:
Hey stupid robber, you can get 8.
Hey stupid robber, you can get 25.
Hey stupid robber, you can get 99.

hide comments
californiagurl: 2013-12-01 05:36:13

O(m*n) == TLE ,,,

Mayur Gajabi: 2013-08-29 11:40:11

don't no why i am getting wrong answer.please check my submission id 9937122.

shashank khare: 2013-08-14 16:49:09

100th
:)

Himanshu: 2013-06-26 11:07:55

my third DP:)
thanx to spoj for providing a database of all kind of problems......

Last edit: 2013-06-26 11:10:19
shreyash pandey: 2013-02-16 08:38:07

my 50th :)

Helpless Hindu: 2012-03-26 07:06:10

@MateusDantas: Can you please tell me why I am getting runtime error. I have taken sufficiently large array bounds and I am using standard approach.

Mateus Dantas [ UFCG ]: 2012-03-24 17:07:49

Nothing, i used only as a example of the history.

dyt: 2012-03-21 06:33:17

They had to leave about 50% of the total value, since the truck couldn't carry all the bags.
What is it meaning?

Arsine Mangasaryan: 2012-03-04 17:37:56

I guess there is a mistake in input!...we have that 8≤A ≤200 although in input there is 6 for A.

LaFolle: 2012-03-03 14:38:17

My top-down got TLE. So glad :)
Similar problem - PIGBANK


Added by:Mateus Dantas [ UFCG ]
Date:2012-02-25
Time limit:0.201s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:Mateus Dantas