結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー zimphazimpha
提出日時 2017-03-25 18:01:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,689 bytes
コンパイル時間 1,732 ms
コンパイル使用メモリ 78,108 KB
実行使用メモリ 54,772 KB
最終ジャッジ日時 2024-07-06 06:05:14
合計ジャッジ時間 4,117 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
50,056 KB
testcase_01 AC 44 ms
50,528 KB
testcase_02 AC 45 ms
50,396 KB
testcase_03 AC 45 ms
50,356 KB
testcase_04 AC 44 ms
50,376 KB
testcase_05 AC 44 ms
50,456 KB
testcase_06 AC 49 ms
50,476 KB
testcase_07 AC 45 ms
50,320 KB
testcase_08 AC 89 ms
52,712 KB
testcase_09 AC 85 ms
52,480 KB
testcase_10 WA -
testcase_11 AC 46 ms
50,224 KB
testcase_12 WA -
testcase_13 AC 51 ms
50,428 KB
testcase_14 AC 71 ms
51,204 KB
testcase_15 WA -
testcase_16 AC 51 ms
50,320 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 89 ms
52,608 KB
testcase_25 AC 90 ms
52,472 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.StringTokenizer;
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.InputStream;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 *
 * @author Chiaki.Hoshinomori
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        InputReader in = new InputReader(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task496 solver = new Task496();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task496 {
        public void solve(int testNumber, InputReader in, PrintWriter out) {
            int n = in.nextInt();
            int m = in.nextInt();
            int q = in.nextInt();
            int f = in.nextInt();
            int[][] dp = new int[n * 2 + 1][];
            for (int i = 0; i <= n * 2; ++i) {
                dp[i] = new int[m * 2 + 1];
                Arrays.fill(dp[i], (n + m) * f);
            }
            dp[0][0] = 0;
            for (int i = 0; i < q; i++) {
                int x = in.nextInt();
                int y = in.nextInt();
                int z = in.nextInt();
                for (int a = n * 2; a >= x; --a) {
                    for (int b = m * 2; b >= y; --b) {
                        dp[a][b] = Math.min(dp[a][b], z + dp[a - x][b - y]);
                    }
                }
            }
            int ret = (n + m) * f;
            for (int i = 0; i <= n * 2; ++i) {
                for (int j = 0; j <= m * 2; ++j) {
                    ret = Math.min(ret, dp[i][j] + Math.abs(n - i) * f + Math.abs(m - j) * f);
                }
            }
            out.println(ret);
        }

    }

    static class InputReader {
        public BufferedReader reader;
        public StringTokenizer tokenizer;

        public InputReader(InputStream stream) {
            reader = new BufferedReader(new InputStreamReader(stream), 32768);
            tokenizer = null;
        }

        public String next() {
            while (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        public int nextInt() {
            return Integer.parseInt(next());
        }

    }
}

0