結果

問題 No.914 Omiyage
ユーザー tentententen
提出日時 2020-08-28 00:57:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 1,177 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 77,212 KB
実行使用メモリ 44,732 KB
最終ジャッジ日時 2024-04-26 10:25:31
合計ジャッジ時間 5,955 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,752 KB
testcase_01 AC 156 ms
41,548 KB
testcase_02 AC 141 ms
44,732 KB
testcase_03 AC 150 ms
41,488 KB
testcase_04 AC 142 ms
41,620 KB
testcase_05 AC 133 ms
41,492 KB
testcase_06 AC 129 ms
41,904 KB
testcase_07 AC 129 ms
41,224 KB
testcase_08 AC 135 ms
41,892 KB
testcase_09 AC 129 ms
41,600 KB
testcase_10 AC 136 ms
41,464 KB
testcase_11 AC 134 ms
41,744 KB
testcase_12 AC 141 ms
41,780 KB
testcase_13 AC 150 ms
41,792 KB
testcase_14 AC 158 ms
41,632 KB
testcase_15 AC 137 ms
41,248 KB
testcase_16 AC 135 ms
41,636 KB
testcase_17 AC 153 ms
41,628 KB
testcase_18 AC 136 ms
41,756 KB
testcase_19 AC 135 ms
41,512 KB
testcase_20 AC 141 ms
41,464 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