Java分行读取终端

2021/6/17 22:55:53

本文主要是介绍Java分行读取终端,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

 

import java.util.Scanner;

public class Solution {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);

        int C = scanner.nextInt();
        scanner.nextLine();
        String[] ans = scanner.nextLine().split(",");
        String[] ans1 = scanner.nextLine().split(",");
        int N = ans.length;
        int[] W = new int[N+1];
        int[] V = new int[N+1];
        int i = 1;
        for (String s : ans) {
            if (s.isEmpty()) continue;
            W[i++] = Integer.parseInt(s);
        }
        i = 1;
        for (String s : ans1) {
            if (s.isEmpty()) continue;
            V[i++] = Integer.parseInt(s);
        }

        int[][] dp = new int[N+1][C+1];
        for (i = 1; i <= N; i++) {
            for (int j = 0; j <= C; j++) {
                if (j >= W[i]) {
                    dp[i][j] = Math.max(dp[i-1][j], dp[i-1][j-W[i]] + V[i]);
                } else {
                    dp[i][j] = dp[i-1][j];
                }
            }
        }
        System.out.println(dp[N][C]);
    }
}

 



这篇关于Java分行读取终端的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程