結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー mosmos_21mosmos_21
提出日時 2017-06-20 10:29:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,388 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 77,164 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-10-02 03:28:47
合計ジャッジ時間 7,344 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,144 KB
testcase_01 AC 134 ms
41,416 KB
testcase_02 AC 135 ms
41,400 KB
testcase_03 AC 136 ms
41,508 KB
testcase_04 WA -
testcase_05 AC 135 ms
41,380 KB
testcase_06 AC 134 ms
41,156 KB
testcase_07 AC 134 ms
41,352 KB
testcase_08 AC 189 ms
41,636 KB
testcase_09 AC 187 ms
41,736 KB
testcase_10 AC 149 ms
41,608 KB
testcase_11 AC 149 ms
41,732 KB
testcase_12 AC 150 ms
41,528 KB
testcase_13 AC 147 ms
41,428 KB
testcase_14 AC 152 ms
41,404 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 154 ms
41,264 KB
testcase_19 WA -
testcase_20 AC 149 ms
41,672 KB
testcase_21 AC 144 ms
41,584 KB
testcase_22 WA -
testcase_23 AC 174 ms
41,616 KB
testcase_24 AC 173 ms
41,680 KB
testcase_25 AC 174 ms
41,724 KB
testcase_26 AC 172 ms
41,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
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();
        
        if(N== 0){
            System.out.println((Gx + Gy) * F);
            return;
        }
        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[Gx + 1][Gy + 1];
        for (int i = 0; i < Gx + 1; i++) {
            Arrays.fill(dp[i], Integer.MAX_VALUE);
        }
        dp[0][0] = 0;
        for (int i = 0; i < N; i++) {
            for (int j = 0; j < Gx + 1; j++) {
                for (int k = 0; k < Gy + 1; k++) {
                    if (j != 0) {
                        dp[j][k] = Math.min(dp[j][k], dp[j - 1][k] + F);
                    }
                    if (k != 0) {
                        dp[j][k] = Math.min(dp[j][k], dp[j][k - 1] + F);
                    }
                    if (j - x[i] >= 0 && k - y[i] >= 0) {
                        dp[j][k] = Math.min(dp[j][k], dp[j - x[i]][k - y[i]] + c[i]);
                    }
                }
            }
        }
        System.out.println(dp[Gx][Gy]);
    }
}
0