結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー mosmos_21mosmos_21
提出日時 2017-06-20 10:56:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 1,478 bytes
コンパイル時間 2,455 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 44,700 KB
最終ジャッジ日時 2024-10-02 03:31:18
合計ジャッジ時間 7,277 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,588 KB
testcase_01 AC 132 ms
41,556 KB
testcase_02 AC 131 ms
41,340 KB
testcase_03 AC 137 ms
41,488 KB
testcase_04 AC 135 ms
41,536 KB
testcase_05 AC 134 ms
41,536 KB
testcase_06 AC 131 ms
41,168 KB
testcase_07 AC 133 ms
41,396 KB
testcase_08 AC 198 ms
44,700 KB
testcase_09 AC 198 ms
44,560 KB
testcase_10 AC 149 ms
41,984 KB
testcase_11 AC 149 ms
41,308 KB
testcase_12 AC 149 ms
41,572 KB
testcase_13 AC 149 ms
41,592 KB
testcase_14 AC 153 ms
41,692 KB
testcase_15 AC 146 ms
41,800 KB
testcase_16 AC 150 ms
41,768 KB
testcase_17 AC 178 ms
42,732 KB
testcase_18 AC 157 ms
42,048 KB
testcase_19 AC 155 ms
41,944 KB
testcase_20 AC 153 ms
41,544 KB
testcase_21 AC 145 ms
41,532 KB
testcase_22 AC 180 ms
44,368 KB
testcase_23 AC 178 ms
44,412 KB
testcase_24 AC 176 ms
44,276 KB
testcase_25 AC 177 ms
44,172 KB
testcase_26 AC 182 ms
44,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    static Scanner in = new Scanner(System.in);

    public static void main(String[] args) {
        int Gx = in.nextInt(), Gy = in.nextInt(), N = in.nextInt(), F = in.nextInt();
        int[] x = new int[N], y = new int[N], c = new int[N];
        for (int i = 0; i < N; i++) {
            x[i] = in.nextInt();
            y[i] = in.nextInt();
            c[i] = in.nextInt();
        }
        int[][][] dp = new int[N + 1][Gx + 1][Gy + 1];
        for(int i = 0; i < Gx + 1; i++){
            for(int j = 0; j < Gy + 1; j++){
                dp[0][i][j] = (i + j) * F;
            }
        }
        for(int i = 1; i < N + 1; i++){
            for(int j = 0; j < Gx + 1; j++){
                for(int k = 0; k < Gy + 1; k++){
                    if(j == 0 && k == 0){
                        dp[i][j][k] = dp[i - 1][j][k];
                    }
                    if(j != 0){
                        dp[i][j][k] = Math.min(dp[i - 1][j][k], dp[i - 1][j - 1][k] + F);
                    }
                    if(k != 0){
                        dp[i][j][k] = Math.min(dp[i - 1][j][k], dp[i - 1][j][k - 1] + F);
                    }
                    if(j - x[i - 1] >= 0 && k - y[i - 1] >= 0){
                        dp[i][j][k] = Math.min(dp[i - 1][j][k], dp[i - 1][j - x[i - 1]][k - y[i - 1]] + c[i - 1]);
                    }
                }
            }
        }
        System.out.println(dp[N][Gx][Gy]);
    }
}
0