zoukankan      html  css  js  c++  java
  • CD-----UVa624(01背包+输出路径)

      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 20
    • no track is longer than N minutes
    • tracks do not repeat
    • length of each track is expressed as an integer number
    • N 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


    这题主要是输出路径有问题
    就是把路径记录下来
    其他都好写

    现在有两种方法
    #include<stdio.h>
    #include<string.h>
    #include<algorithm>
    #include<math.h>
    #include<stdlib.h>
    #include<queue>
    #include<iostream>
    using namespace std;
    
    int dp[111000],vis[50][111000];
    int f[50],k=0,w[50];
    
    void prime(int n,int m)
    {
        if(n==0||m<0)
            return;
        if(vis[n][m]==0)
            prime(n-1,m);
        else
        {
            prime(n-1,m-w[n]);
            f[k++]=w[n];;
        }
    }
    int main()
    {
        int m,n,i,j;
        while(scanf("%d",&m)!=EOF)
        {
            memset(w,0,sizeof(w));
            scanf("%d",&n);
            for(i=1;i<=n;i++)
            {
                scanf("%d",&w[i]);
            }
            memset(dp,0,sizeof(dp));
            memset(vis,0,sizeof(vis));
            for(i=1;i<=n;i++)
            {
                for(j=m;j>=w[i];j--)
                {
                    if(dp[j]<dp[j-w[i]]+w[i])
                    {
                        dp[j]=dp[j-w[i]]+w[i];
                        vis[i][j]=1;
                    }
                }
            }
            k=0;
            memset(f,0,sizeof(f));
            prime(n,m);
            for(i=0;i<k;i++)
                printf("%d ",f[i]);
            printf("sum:%d
    ",dp[m]);
        }
        return 0;
    }


    #include<stdio.h> #include<string.h> #include<algorithm> #include<math.h> #include<stdlib.h> #include<queue> #include<iostream> using namespace std; int dp[111000],vis[50][111000]; int main() { int m,n,w[50],i,j; while(scanf("%d",&m)!=EOF) { scanf("%d",&n); for(i=1;i<=n;i++) { scanf("%d",&w[i]); } memset(dp,0,sizeof(dp)); memset(vis,0,sizeof(vis)); for(i=n;i>0;i--) { for(j=m;j>=w[i];j--) { if(dp[j]<dp[j-w[i]]+w[i]) { dp[j]=dp[j-w[i]]+w[i]; vis[i][j]=1; } } } for(i=1,j=dp[m];i<=n&&j>0;i++) { if(vis[i][j]) { printf("%d ",w[i]); j=j-w[i]; } } printf("sum:%d ",dp[m]); } return 0; }
  • 相关阅读:
    代码演示C#各版本新功能
    有关taro的路由的问题
    优秀的基于VUE移动端UI框架合集
    前端开发应该关注的前沿技术
    let与const的区别
    vue2.0 watch里面的 deep和immediate作用
    Flink MiniCluster 启动流程
    Windows把执行命令值赋值给变量
    Ubuntu时间比正常时间多8小时,设置重启以后时间又多8小时解决办法
    Windows下使用命令实现类似awk命令
  • 原文地址:https://www.cnblogs.com/linliu/p/5041344.html
Copyright © 2011-2022 走看看