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分行读取终端的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-01一个基于注解驱动的可视化的DDD架构-超越COLA的设计
- 2025-01-01PlantUML 时序图 基本例子
- 2025-01-01plantuml 信号时序图
- 2025-01-01聊聊springboot项目如何优雅进行数据校验
- 2024-12-31自由职业者效率提升指南:3个时间管理技巧搞定多个项目
- 2024-12-31适用于咨询行业的项目管理工具:提升跨团队协作和工作效率的最佳选择
- 2024-12-31高效协作的未来:2024年实时文档工具深度解析
- 2024-12-31商务谈判者的利器!哪 6 款办公软件能提升春节合作成功率?
- 2024-12-31小团队如何选择最实用的项目管理工具?高效协作与任务追踪指南
- 2024-12-31数据赋能,智慧养老:看板软件如何重塑养老服务生态