龚秋志


私信TA

用户名:uq_48078956563

访问量:55336

签 名:

等  级
排  名 36
经  验 14010
参赛次数 30
文章发表 64
年  龄 19
在职情况 学生
学  校 湖北生物科技职业学院
专  业 计算机应用

  自我简介:

import java.util.Scanner;

public class 简化型背包 {

    static int V, W;
    static int[] p = new int[6];
    static int[] v = new int[6];
    static int[] w = new int[6];

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        V = sc.nextInt();// 最大体积
        W = sc.nextInt();// 最大重量
        for (int i = 1; i < 6; i++) {
            p[i] = sc.nextInt();
            v[i] = sc.nextInt();
            w[i] = sc.nextInt();
        }
        dfs(0, 0, 0, 0);
        System.out.println(Max);
    }

    static int Max = Integer.MIN_VALUE;

    public static void dfs(int MaxV, int MaxW, int i, int P) {
        MaxV += v[i];
        MaxW += w[i];
        P += p[i];
        Max = Math.max(P, Max);
        if (MaxV == V || MaxW == W)return;
            
        for (int j = i + 1; j < 6; j++) {

            if (MaxV + v[j] <= V && MaxW + w[j] <= W) {
                dfs(MaxV, MaxV, j, P);
            }

        }
    }
}


 

0.0分

2 人评分

新上线《蓝桥杯辅导》课程,近五年的蓝桥杯省赛与国赛真题都有,从读题开始理解题意、梳理思路、实现代码再提交评测全过程,可有效提升获奖比例甚至进国赛!课程介绍、试听请猛击这里

  评论区

  • «
  • »