結果

問題 No.914 Omiyage
ユーザー tentententen
提出日時 2020-08-28 00:57:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 1,177 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 77,024 KB
実行使用メモリ 41,636 KB
最終ジャッジ日時 2024-11-09 00:57:35
合計ジャッジ時間 6,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
41,480 KB
testcase_01 AC 149 ms
41,408 KB
testcase_02 AC 145 ms
41,520 KB
testcase_03 AC 150 ms
41,580 KB
testcase_04 AC 144 ms
41,476 KB
testcase_05 AC 137 ms
40,844 KB
testcase_06 AC 133 ms
41,088 KB
testcase_07 AC 137 ms
41,172 KB
testcase_08 AC 140 ms
41,636 KB
testcase_09 AC 136 ms
41,264 KB
testcase_10 AC 142 ms
41,344 KB
testcase_11 AC 134 ms
41,136 KB
testcase_12 AC 126 ms
40,308 KB
testcase_13 AC 152 ms
41,472 KB
testcase_14 AC 166 ms
41,504 KB
testcase_15 AC 134 ms
41,248 KB
testcase_16 AC 132 ms
41,540 KB
testcase_17 AC 151 ms
41,384 KB
testcase_18 AC 131 ms
41,124 KB
testcase_19 AC 135 ms
41,276 KB
testcase_20 AC 134 ms
41,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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