Apsaravideo player 624 CD

Source: Internet
Author: User
CD

You have a long drive by car ahead. you have a tape recorder, but unfortunately your best music is on CDs. you need to have it on tapes so the problem to solve is: You have a tapeNMinutes long. How to Choose tracks from CD to get most out of tape space and have as short unused space as possible.


Assumptions:

  • Number of tracks on the CD. does not exceed 20
  • No track is longerNMinutes
  • Tracks do not repeat
  • Length of each track is expressed as an integer number
  • NIs also integer

Program shocould find the set of tracks which fills the tape best and print it in the same sequence as the tracks are stored on the CD

Input any number of lines. each one contains value n, (after space) number of tracks and durations of the tracks. for example from first line in sample data: n = 5, number of tracks = 3, first track lasts for 1 minute, second one 3 minutes, next one 4 minutes

Output set of tracks (and durations) which are the correct solutions and string'' Sum:"And sum of duration times.

Sample Input

5 3 1 3 410 4 9 8 4 220 4 10 5 7 490 8 10 23 1 2 3 4 5 745 8 4 10 44 43 12 9 8 2

Sample output
1 4 sum:58 2 sum:1010 5 4 sum:1910 23 1 2 3 4 5 7 sum:554 10 12 9 8 2 sum:45

Solution: path [I] [J] records the Policy Selection and pushes back when output.

#include <iostream>#include <cstdio>#include <cstring>#define N 10005using namespace std;int main(){int m,n,i,j;int dp[N],path[25][N],v[25];//freopen("in.txt","r",stdin);//freopen("out.txt","w",stdout);while(~scanf("%d%d",&n,&m)){for(i=0;i<m;i++)scanf("%d",v+i);memset(dp,0,sizeof(dp));memset(path,0,sizeof(path));for(i=0;i<m;i++)for(j=n;j>=v[i];j--)if(dp[j]<dp[j-v[i]]+v[i]){dp[j]=dp[j-v[i]]+v[i];path[i][j]=1;}elsepath[i][j]=0;j=n;for(i=m-1;i>0;i--){if(path[i][j]==1 && j>=0)              {                  printf("%d ",v[i]);                  j-=v[i];              }  }printf("sum:%d\n",dp[n]);}    return 0;}


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.