DWITE Online Computer Programming Contest

Playlist

December 2007
Problem 3

There’s a library full of legally purchased music and a shiny new MP3 player that needs to be filled with the best possible playlist. Every song comes with a rating from 0 to 5 (inclusive) and takes up a certain amount of space. The best playlist is defined as the one with the highest total of rating points that still fits into the allowable space.

The input file DATA3.txt will contain five data sets. The first line will contain the space available in the player, a positive integer. The second line will specify the size of the music library, 1 ≤ N ≤ 100. This is followed by N lines in the form title rating space. The title will be a unique single string (no spaces). Rating is an integer from 0 to 5. Space is an integer, 1 ≤ S ≤ 30000. This is followed by the next data set.

The output file OUT3.txt will contain five lines, each containing an integer – the max sum of ratings that can fit on the player.

Sample Input (only 1 dataset shown):
100
6
song_one 5 25
song_two 5 25
song_three 5 51
song_four 4 50
song_five 3 25
song_six 3 25
Sample Output (only first dataset shown):
16