結果
問題 | No.496 ワープクリスタル (給料日前編) |
ユーザー | mosmos_21 |
提出日時 | 2017-06-20 10:50:15 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,360 bytes |
コンパイル時間 | 2,178 ms |
コンパイル使用メモリ | 78,108 KB |
実行使用メモリ | 56,336 KB |
最終ジャッジ日時 | 2024-10-02 03:30:53 |
合計ジャッジ時間 | 7,386 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 123 ms
40,208 KB |
testcase_01 | AC | 132 ms
41,204 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 136 ms
41,300 KB |
testcase_06 | AC | 136 ms
41,428 KB |
testcase_07 | AC | 132 ms
41,300 KB |
testcase_08 | AC | 202 ms
44,048 KB |
testcase_09 | AC | 202 ms
44,168 KB |
testcase_10 | RE | - |
testcase_11 | AC | 150 ms
41,528 KB |
testcase_12 | AC | 152 ms
41,656 KB |
testcase_13 | RE | - |
testcase_14 | AC | 157 ms
41,664 KB |
testcase_15 | AC | 150 ms
41,700 KB |
testcase_16 | RE | - |
testcase_17 | AC | 170 ms
42,228 KB |
testcase_18 | AC | 156 ms
42,136 KB |
testcase_19 | AC | 157 ms
41,724 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 183 ms
43,948 KB |
testcase_23 | AC | 180 ms
43,928 KB |
testcase_24 | WA | - |
testcase_25 | AC | 179 ms
44,052 KB |
testcase_26 | AC | 178 ms
44,120 KB |
ソースコード
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){ dp[i][j][k] = Math.min(dp[i - 1][j][j], 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]); } }