結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-17 10:49:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 1,132 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 77,092 KB
実行使用メモリ 56,232 KB
最終ジャッジ日時 2024-10-01 09:28:20
合計ジャッジ時間 6,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,952 KB
testcase_01 AC 123 ms
53,712 KB
testcase_02 AC 125 ms
53,804 KB
testcase_03 AC 122 ms
53,960 KB
testcase_04 AC 120 ms
54,096 KB
testcase_05 AC 125 ms
54,100 KB
testcase_06 AC 118 ms
54,032 KB
testcase_07 AC 123 ms
53,996 KB
testcase_08 AC 174 ms
56,188 KB
testcase_09 AC 177 ms
56,224 KB
testcase_10 AC 133 ms
54,048 KB
testcase_11 AC 142 ms
53,860 KB
testcase_12 AC 139 ms
53,960 KB
testcase_13 AC 136 ms
54,036 KB
testcase_14 AC 137 ms
54,260 KB
testcase_15 AC 131 ms
53,964 KB
testcase_16 AC 136 ms
53,816 KB
testcase_17 AC 146 ms
54,268 KB
testcase_18 AC 131 ms
53,988 KB
testcase_19 AC 142 ms
54,084 KB
testcase_20 AC 142 ms
53,880 KB
testcase_21 AC 136 ms
53,800 KB
testcase_22 AC 150 ms
56,232 KB
testcase_23 AC 150 ms
56,060 KB
testcase_24 AC 149 ms
56,004 KB
testcase_25 AC 151 ms
56,028 KB
testcase_26 AC 150 ms
55,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int Gx = sc.nextInt();
    int Gy = sc.nextInt();
    int N = sc.nextInt();
    int F = sc.nextInt();
    int[] x = new int[N];
    int[] y = new int[N];
    int[] c = new int[N];
    for(int i = 0; i < N; i++) {
      x[i] = sc.nextInt();
      y[i] = sc.nextInt();
      c[i] = sc.nextInt();
    }
    // dp[i][j][k]はクリスタル0~i-1(i個)までを使って(j,k)だけ移動する際の最小コスト
    int[][][] dp = new int[N + 1][Gx + 1][Gy + 1];
    for(int j = 0; j < Gx + 1; j++) {
      for(int k = 0; k < Gy + 1; k++) {
        dp[0][j][k] = (j + k) * 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(x[i - 1] <= j && y[i - 1] <= k) {
            dp[i][j][k] = Math.min(dp[i - 1][j][k], c[i - 1] + dp[i - 1][j - x[i - 1]][k - y[i - 1]]);
          } else {
            dp[i][j][k] = dp[i - 1][j][k]; 
          }
        }
      }
    }
    System.out.println(dp[N][Gx][Gy]);
  }
}
0