ABA12C - Buying Apples!


Harish went to a supermarket to buy exactly ‘k’ kilograms apples for his ‘n’ friends. The supermarket was really weird. The pricing of items was very different. He went to the Apples section and enquired about the prices. The salesman gave him a card in which he found that the prices of apples were not per kg. The apples were packed into covers, each containing ‘x’ kg of apples, x > 0 and ‘x’ is an integer. An ‘x’ kg packet would be valued at ‘y’ rupees. So, the placard contained a table with an entry ‘y’ denoting the price of an ‘x’ kg packet. If ‘y’ is -1 it means that the corresponding packet is not available. Now as apples are available only in packets, he decides to buy at most ‘n’ packets for his ‘n’ friends i.e he will not buy more than n packets of apples.

Harish likes his friends a lot and so he does not want to disappoint his friends. So now, he will tell you how many friends he has and you have to tell him the minimum amount of money he has to spend for his friends.

Input

The first line of input will contain the number of test cases, C.

Each test case will contain two lines.

The first line containing N and K, the number of friends he has and the amount of Apples in kilograms which he should buy.

The second line contains K space separated integers in which the ith integer specifies the price of a ‘i’kg apple packet. A value of -1 denotes that the corresponding packet is unavailable.

  • 0 < N <= 100
  • 0 < K <= 100
  • 0 < price <= 1000

Output

The output for each test case should be a single line containing the minimum amount of money he has to spend for his friends. Print -1 if it is not possible for him to satisfy his friends.

Sample I/O

Input:
2
3 5
-1 -1 4 5 -1
5 5
1 2 3 4 5

Output:
-1
5

Explanation of test cases:

  1. As there are only 3 and 4kg packets in the shop, he will not be able to satisfy his friends as he would not be able to buy exactly 5kg of apples.
  2. He can buy five 1kg packet as he has to buy 5 kg. So the min money he should spend is 5.

hide comments
scube6897: 2017-05-04 10:14:31

Ac in first go.The correct solution is accepted guys. Do try it .Very good problem!

srbcheema1: 2017-04-05 23:15:18

please don't waste your time in this wrong question
test cases are wrong

1: contains price "0" while in constraints its mentioned that price > 0
2: test cases are independent of 'n'
n is useless here

frenicohansen: 2017-03-27 17:26:38

don't consider the n

shubham_001: 2017-03-17 15:06:43

test cases aren't good enough ,not checking whether n is lesser

hamilton___111: 2017-03-15 11:19:14

I think something is wrong in this problem. If anyone has submitted the solution and got AC then check this test case on your solution.
1
3 4
1 3 -1 -1
It should give -1 as output but it is giving output 5.

praney_rai: 2017-03-07 18:50:47

NICE Question... :)

sonu: 2017-03-07 17:51:39

AC with only recursion ,no memoization!!

joshpardosi: 2017-03-07 03:10:16

Mantap Jiwa !!! Very GOOD ! Smangat buat ujiannya XD ! GGWP

cake_is_a_lie: 2017-03-06 04:59:02

Does your solution pass this?
Input: 4 6
1 3 -1 -1 -1 -1
Expected: 8 (2*1 + 2*3 to get 4 packets with 6kg total)

The tests being awful shouldn't mean you don't try to actually SOLVE the problem. And despite what some of the previous comments say, the correct solution DOES get AC.

Last edit: 2017-03-06 05:20:37
crenchkeren: 2017-02-27 05:35:05

what is going on? "N" is very useless.


Added by:Kashyap Krishnakumar
Date:2012-01-13
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:Own problem