Java教程

洛谷P1060 java题解

本文主要是介绍洛谷P1060 java题解,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

题目描述:

 解题思路:

重要度相当于价值的倍率

(物品价格*重要度=价值)

经典的背包问题

直接DP把各种情况下的最优解打表出来取最后一个就行了

代码:

import java.util.Scanner;

public class P1060 {
    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt();
        int m=sc.nextInt();
        int[][] w=new int[m][2];
        for (int i = 0; i < m; i++) {
            w[i][0]=sc.nextInt();
            w[i][1]=sc.nextInt();
            w[i][1]=w[i][0]*w[i][1];
        }

        int[][] dp=new int[w.length+1][n+1];
        for (int i = 1; i <= w.length; i++) {
            for (int j = 1; j <= n; j++) {
                if (j<w[i-1][0]){
                    dp[i][j]=dp[i-1][j];
                }else {
                    dp[i][j]=Math.max(dp[i-1][j],dp[i-1][j-w[i-1][0]]+w[i-1][1]);
                }
            }
        }
        System.out.print(dp[w.length][n]);
    }
}

 

这篇关于洛谷P1060 java题解的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!