結果

問題 No.914 Omiyage
ユーザー htensaihtensai
提出日時 2019-12-30 19:32:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 1,142 bytes
コンパイル時間 2,453 ms
コンパイル使用メモリ 78,104 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-04-26 21:25:27
合計ジャッジ時間 6,321 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,476 KB
testcase_01 AC 149 ms
41,152 KB
testcase_02 AC 135 ms
41,156 KB
testcase_03 AC 134 ms
41,408 KB
testcase_04 AC 129 ms
41,080 KB
testcase_05 AC 118 ms
40,900 KB
testcase_06 AC 118 ms
41,288 KB
testcase_07 AC 120 ms
41,440 KB
testcase_08 AC 127 ms
41,044 KB
testcase_09 AC 128 ms
41,020 KB
testcase_10 AC 129 ms
41,076 KB
testcase_11 AC 127 ms
41,328 KB
testcase_12 AC 130 ms
41,356 KB
testcase_13 AC 148 ms
41,652 KB
testcase_14 AC 140 ms
41,624 KB
testcase_15 AC 120 ms
41,180 KB
testcase_16 AC 127 ms
41,328 KB
testcase_17 AC 141 ms
41,628 KB
testcase_18 AC 115 ms
39,928 KB
testcase_19 AC 120 ms
39,976 KB
testcase_20 AC 124 ms
41,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int[][] goods;
    static int[][] dp;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        int k = sc.nextInt();
        goods = new int[n][m];
        dp = new int[n][k + 1];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                goods[i][j] = sc.nextInt();
            }
            Arrays.fill(dp[i], -1);
        }
        int ans = dfw(n - 1, k);
        if (ans > k) {
            ans = -1;
        }
        System.out.println(ans);
    }
    
    static int dfw(int idx, int money) {
        if (money < 0) {
            return Integer.MAX_VALUE;
        }
        if (idx < 0) {
            return money;
        }
        if (dp[idx][money] != -1) {
            return dp[idx][money];
        }
        dp[idx][money] = Integer.MAX_VALUE;
        for (int i = 0; i < goods[idx].length; i++) {
            dp[idx][money] = Math.min(dp[idx][money], dfw(idx - 1, money - goods[idx][i]));
        }
        return dp[idx][money];
    }
}
0