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
:.Mohib.:: 2015-06-19 15:32:10

Nice dp!!

shikhar jindal: 2015-03-12 08:06:39

can anyone plzz help me out telling is it possible that 5kg packet can have less price then 4kg packet..

Jugal kishor sahu: 2015-03-08 16:49:19

Abhishek is right. Question is not complete.n is useless.we can take any number of packet.

Mitch Schwartz: 2015-03-04 00:42:11

@ABHISHEK004: Before using a word like "ambiguous", you should take the time to look up what the word means.

ABHISHEK004: 2015-03-03 20:16:14

nice problem
but problem description is not complete
first is that price of packets can also be zero
second is that there is no use of value of 'n' i.e, number of friends.
Either this statement "he decides to buy atmost ‘n’ packets for his ‘n’ friends" should be removed from problem description or test cases should be updated as this is misleading the users

Last edit: 2015-03-06 11:04:45
Atul Kumar Verma: 2015-02-28 00:02:07

So Happy to solve this nice DP in one attempt :)

Last edit: 2015-02-28 00:02:22
eightnoteight: 2015-02-04 12:46:19

wow 0.01 in python,
wonderful dp problem..

Jayadev Rajan: 2014-12-23 05:42:22

@Kishlay You are right. The answer is 23 by the way.

Kishlay Raj: 2014-12-20 06:22:34

what will be the ans of
2 23
-1 -1 3 -1 -1 -1 7 -1 -1 -1 -1 -1 13 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
the test cases given are not dependent on the num of friends .
plz check the above given test case

raj kamal: 2014-11-05 22:32:29

first solve (http://codeforces.com/problemset/problem/189/A) this question ...u will get hint..


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