結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー htensaihtensai
提出日時 2020-05-08 16:28:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,022 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 78,132 KB
実行使用メモリ 44,876 KB
最終ジャッジ日時 2024-07-03 09:52:44
合計ジャッジ時間 7,134 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,360 KB
testcase_01 AC 132 ms
41,344 KB
testcase_02 AC 134 ms
41,144 KB
testcase_03 AC 134 ms
41,576 KB
testcase_04 AC 133 ms
41,036 KB
testcase_05 AC 134 ms
41,356 KB
testcase_06 AC 131 ms
41,608 KB
testcase_07 AC 134 ms
41,448 KB
testcase_08 AC 169 ms
44,656 KB
testcase_09 AC 164 ms
44,876 KB
testcase_10 AC 163 ms
42,728 KB
testcase_11 AC 145 ms
41,664 KB
testcase_12 AC 145 ms
41,620 KB
testcase_13 AC 142 ms
41,512 KB
testcase_14 AC 140 ms
41,640 KB
testcase_15 AC 137 ms
41,708 KB
testcase_16 AC 143 ms
41,448 KB
testcase_17 AC 143 ms
42,088 KB
testcase_18 AC 138 ms
41,904 KB
testcase_19 AC 138 ms
41,740 KB
testcase_20 AC 136 ms
41,832 KB
testcase_21 AC 125 ms
40,472 KB
testcase_22 AC 158 ms
43,660 KB
testcase_23 AC 160 ms
43,988 KB
testcase_24 AC 157 ms
43,880 KB
testcase_25 AC 158 ms
43,964 KB
testcase_26 AC 160 ms
44,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int[] xArr;
    static int[] yArr;
    static int[] cArr;
    static int[][][] dp;
    static int fee;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int goalX = sc.nextInt();
		int goalY = sc.nextInt();
		int n = sc.nextInt();
		fee = sc.nextInt();
		xArr = new int[n];
		yArr = new int[n];
		cArr = new int[n];
		for (int i = 0; i < n; i++) {
		    xArr[i] = sc.nextInt();
		    yArr[i] = sc.nextInt();
		    cArr[i] = sc.nextInt();
		}
		dp = new int[n][goalX + 1][goalY + 1];
		System.out.println(dfw(n - 1, goalX, goalY));
	}
	
	static int dfw(int idx, int x, int y) {
	    if (idx < 0) {
	        return (x + y) * fee;
	    }
	    if (dp[idx][x][y] != 0) {
	        return dp[idx][x][y];
	    }
	    dp[idx][x][y] = dfw(idx - 1, x, y);
	    if (xArr[idx] <= x && yArr[idx] <= y)  {
	        dp[idx][x][y] = Math.min(dp[idx][x][y], dfw(idx - 1, x - xArr[idx], y - yArr[idx]) + cArr[idx]);
	    }
	    return dp[idx][x][y];
	}
}
0