結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー zimphazimpha
提出日時 2017-03-25 18:01:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,689 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 74,728 KB
実行使用メモリ 53,272 KB
最終ジャッジ日時 2023-09-20 10:37:37
合計ジャッジ時間 5,187 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,448 KB
testcase_01 AC 46 ms
49,768 KB
testcase_02 AC 46 ms
49,564 KB
testcase_03 AC 45 ms
49,656 KB
testcase_04 AC 45 ms
49,504 KB
testcase_05 AC 47 ms
49,504 KB
testcase_06 AC 51 ms
49,768 KB
testcase_07 AC 45 ms
49,592 KB
testcase_08 AC 104 ms
53,272 KB
testcase_09 AC 93 ms
52,768 KB
testcase_10 WA -
testcase_11 AC 47 ms
49,432 KB
testcase_12 WA -
testcase_13 AC 55 ms
50,180 KB
testcase_14 AC 59 ms
50,632 KB
testcase_15 WA -
testcase_16 AC 56 ms
50,980 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 96 ms
52,964 KB
testcase_25 AC 93 ms
52,844 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