結果

問題 No.914 Omiyage
ユーザー htensaihtensai
提出日時 2019-12-30 19:32:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 1,142 bytes
コンパイル時間 2,035 ms
コンパイル使用メモリ 78,000 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-11-14 12:45:49
合計ジャッジ時間 5,977 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,068 KB
testcase_01 AC 141 ms
53,984 KB
testcase_02 AC 136 ms
54,204 KB
testcase_03 AC 143 ms
53,880 KB
testcase_04 AC 138 ms
54,208 KB
testcase_05 AC 129 ms
54,092 KB
testcase_06 AC 131 ms
54,320 KB
testcase_07 AC 128 ms
54,140 KB
testcase_08 AC 137 ms
54,232 KB
testcase_09 AC 130 ms
54,052 KB
testcase_10 AC 133 ms
54,160 KB
testcase_11 AC 131 ms
53,996 KB
testcase_12 AC 136 ms
54,236 KB
testcase_13 AC 147 ms
54,088 KB
testcase_14 AC 155 ms
54,120 KB
testcase_15 AC 130 ms
54,156 KB
testcase_16 AC 133 ms
53,980 KB
testcase_17 AC 149 ms
54,204 KB
testcase_18 AC 118 ms
52,976 KB
testcase_19 AC 131 ms
53,912 KB
testcase_20 AC 133 ms
54,228 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