题解 | #[NOIP2001]装箱问题#

[NOIP2001]装箱问题

http://www.nowcoder.com/practice/55100a6608ad4656849dbd1f16d044cb

import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int V = Integer.valueOf(scan.nextLine().trim());
        int n = Integer.valueOf(scan.nextLine().trim());
        int[] vs = new int[n + 1];
        for (int i = 1; i <= n; i++) {
            vs[i] = Integer.valueOf(scan.nextLine().trim());
        }
        int[] dp = new int[V + 1];
        for (int Goods = 1; Goods <= n; Goods++) {
            for (int Volume = V; Volume >= vs[Goods]; Volume--) {
                dp[Volume] = Math.max(dp[Volume], vs[Goods] + dp[Volume - vs[Goods]]);
            }
        }
        System.out.println(V - dp[V]);
    }
}
全部评论
该牛油正在参与牛客写题解薅羊毛的活动,牛币,周边,京东卡超多奖品放送,活动进入倒计时!快来捡漏啦https://www.nowcoder.com/discuss/888949?source_id=profile_create_nctrack&channel=-1
点赞 回复 分享
发布于 2022-04-20 17:07

相关推荐

11-18 09:44
Java
小白也想要offer:简历别放洋屁,搞不还还放错了,当然你投外企除外,以上纯属个人观点
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务