STAMPS - Stamps
Everybody hates Raymond. He’s the largest stamp collector on planet earth and because of that he always makes fun of all the others at the stamp collector parties. Fortunately everybody loves Lucy, and she has a plan. She secretly asks her friends whether they could lend her some stamps, so that she can embarrass Raymond by showing an even larger collection than his. Raymond is so sure about his superiority that he always tells how many stamps he’ll show. And since Lucy knows how many she owns, she knows how many more she needs. She also knows how many friends would lend her some stamps and how many each would lend. But she’s like to borrow from as few friends as possible and if she needs too many then she’d rather not do it at all. Can you tell her the minimum number of friends she needs to borrow from?
Input
The first line contains the number of scenarios. Each scenario describes one collectors party and its first line tells you how many stamps (from 1 to 1000000) Lucy needs to borrow and how many friends (from 1 to 1000) offer her some stamps. In a second line you’ll get the number of stamps (from 1 to 10000) each of her friends is offering.
Output
The output for every scenario begins with a line containing “Scenario #i:”, where i is the number of the scenario starting at 1. Then print a single line with the minimum number of friends Lucy needs to borrow stamps from. If it’s impossible even if she borrows everything from everybody, write impossible. Terminate the output for the scenario with a blank line.
Example
Input: 3 100 6 13 17 42 9 23 57 99 6 13 17 42 9 23 57 1000 3 314 159 265 Output: Scenario #1: 3 Scenario #2: 2 Scenario #3: impossible
hide comments
Sahil Dua:
2014-07-22 06:17:27
Not observing output format closely gave me 2 WAs. Take care of every character in output. |
|
kernel:
2014-07-21 15:31:07
Got AC. Make sure your last test result do not have a newline. also make sure the array to hold the stamp donors to be minimum 1000. This worked for me.... |
|
raj kamal:
2014-07-21 10:37:56
easy one...ac in first go.. |
|
S:
2014-07-19 00:46:24
For Java, String manipulation speed matters: String.split (TLE) => StringTokenizer (AC). Last edit: 2014-07-19 00:47:17 |
|
Aragon!!!:
2014-07-18 08:23:50
except from output format not a good ques.. |
|
Shireen Nagdive:
2014-07-04 14:14:57
Java users..use nextLine and parse it to integer..becoz of this i was getting TLE :/ |
|
Deepak Singh Tomar:
2014-07-03 20:58:59
be careful about the formatting... cost me 4 WA's... rest is cakewalk |
|
kush khandelwal:
2014-07-02 18:18:27
read the output format well otherwise its easy one ;) |
|
AnilKumar:
2014-06-15 07:27:41
Please tell me why it is giving WA for me... :(
|
|
surayans tiwari(http://bit.ly/1EPzcpv):
2014-06-14 23:55:21
easy |
Added by: | Daniel Gómez Didier |
Date: | 2008-11-17 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ERL JS-RHINO |
Resource: | 2007 - Circuito de Maratones ACIS / REDIS |