程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> UVA 624 CD

UVA 624 CD

編輯:C++入門知識

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 tape N minutes 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 20no track is longer than N minutestracks do not repeatlength of each track is expressed as an integer numberN is also integer

    Program should 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 4
    10 4 9 8 4 2
    20 4 10 5 7 4
    90 8 10 23 1 2 3 4 5 7
    45 8 4 10 44 43 12 9 8 2
    

    Sample Output

    1 4 sum:5
    8 2 sum:10
    10 5 4 sum:19
    10 23 1 2 3 4 5 7 sum:55
    4 10 12 9 8 2 sum:45
    

    解題思路:path[i][j]記錄策略的選擇,輸出的時候倒推回去

    #include 
    #include 
    #include 
    #define N 10005
    using 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=v[i];j--)
    				if(dp[j]0;i--)
    		{
    			if(path[i][j]==1 && j>=0)  
                {  
                    printf("%d ",v[i]);  
                    j-=v[i];  
                }  
    		}
    		printf("sum:%d\n",dp[n]);
    	}
        return 0;
    }


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved