题解 | #采药#01背包模板题,记住就行。

采药

https://www.nowcoder.com/practice/d7c03b114f0541dd8e32ce9987326c16

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int t = sc.nextInt();
        int m = sc.nextInt();
        int[] dp = new int[t + 1];
        while (m-- != 0) {
            int weight = sc.nextInt();
            int value = sc.nextInt();
            for (int i = t; i >= weight; i--) {
                dp[i] = Math.max(dp[i], dp[i - weight] + value);
            }
        }
        System.out.println(dp[t]);
    }
}

全部评论

相关推荐

死在JAVA的王小美:哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈,我也是,让我免了一轮,但是硬气拒绝了
点赞 评论 收藏
分享
威猛的小饼干正在背八股:挂到根本不想整理
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务