結果
問題 | No.2317 Expression Menu |
ユーザー |
![]() |
提出日時 | 2023-12-12 08:55:09 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 768 ms / 2,000 ms |
コード長 | 2,480 bytes |
コンパイル時間 | 3,047 ms |
コンパイル使用メモリ | 92,176 KB |
実行使用メモリ | 255,392 KB |
最終ジャッジ日時 | 2024-09-27 04:51:41 |
合計ジャッジ時間 | 24,880 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 37 |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static int[] sizes; static int[] amounts; static int[] values; static long[][][] dp; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int menu = sc.nextInt(); int weight = sc.nextInt(); sizes = new int[n]; amounts = new int[n]; values = new int[n]; for (int i = 0; i < n; i++) { sizes[i] = sc.nextInt(); amounts[i] = sc.nextInt(); values[i] = sc.nextInt(); } dp = new long[n][menu + 1][weight + 1]; for (long[][] arr1 : dp) { for (long[] arr2 : arr1) { Arrays.fill(arr2, -1); } } System.out.println(dfw(n - 1, menu, weight)); } static long dfw(int idx, int v, int w) { if (v < 0 || w < 0) { return Long.MIN_VALUE; } if (idx < 0) { return 0; } if (dp[idx][v][w] < 0) { dp[idx][v][w] = Math.max(dfw(idx - 1, v, w), dfw(idx - 1, v - sizes[idx], w - amounts[idx]) + values[idx]); } return dp[idx][v][w]; } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }