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
rangey_18o3_20: 2021-08-04 20:05:26

Mind the "." at the end of output , cost me a WA

prezesstefan: 2021-06-19 05:11:20

doable in Java with space-optimized DP, but very tight

the second sample test case contradicts the constraints specified in the description "two integers A and B (8 ≤ A ≤ 200 and 1 ≤ B ≤ 25)":

900 1
900 25

Last edit: 2021-06-21 16:04:38
hari_nandan: 2021-03-31 18:32:23

2 WA DUE TO "."IN OUTPUT STATEMENT

pissedoff: 2020-08-22 18:42:03

Spoj made me hate Java :-p

heisenberg666: 2020-07-24 21:38:51

Beware of output statement and that "." at the end. WA.

robosapien: 2020-07-12 01:48:06

Easy knapsack!

sanjay23_: 2020-06-29 20:07:55

TLE in java anyone?

deerawat: 2020-06-25 16:08:35

A basic knapsack !!

manish_thakur: 2020-04-29 16:24:41

basic knapsack problem for beginners like me, also mind the output format! good luck

mrdevesh_00: 2020-04-27 11:35:00

AC in one go!!


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