結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー tentententen
提出日時 2020-12-10 11:33:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,808 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 78,644 KB
実行使用メモリ 59,536 KB
最終ジャッジ日時 2024-09-19 19:15:15
合計ジャッジ時間 7,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
39,984 KB
testcase_01 AC 114 ms
41,488 KB
testcase_02 AC 116 ms
41,416 KB
testcase_03 AC 104 ms
39,992 KB
testcase_04 WA -
testcase_05 AC 109 ms
40,600 KB
testcase_06 AC 136 ms
41,816 KB
testcase_07 AC 112 ms
41,324 KB
testcase_08 AC 324 ms
50,344 KB
testcase_09 AC 345 ms
50,192 KB
testcase_10 AC 133 ms
41,596 KB
testcase_11 AC 136 ms
41,600 KB
testcase_12 AC 142 ms
41,764 KB
testcase_13 AC 157 ms
41,856 KB
testcase_14 AC 177 ms
43,096 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 174 ms
42,480 KB
testcase_19 WA -
testcase_20 AC 138 ms
41,688 KB
testcase_21 AC 136 ms
40,776 KB
testcase_22 WA -
testcase_23 AC 235 ms
48,120 KB
testcase_24 AC 221 ms
47,832 KB
testcase_25 AC 219 ms
47,736 KB
testcase_26 AC 225 ms
48,144 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[] xArr = new int[n];
        int[] yArr = new int[n];
        int[] cArr = new int[n];
        for (int i = 0; i < n; i++) {
            xArr[i] = sc.nextInt();
            yArr[i] = sc.nextInt();
            cArr[i] = sc.nextInt();
        }
        int[][] costs = new int[gx + 1][gy + 1];
        for (int[] arr : costs) {
            Arrays.fill(arr, Integer.MAX_VALUE);
        }
        PriorityQueue<Path> queue = new PriorityQueue<>();
        queue.add(new Path(0, 0, 0));
        while (queue.size() > 0) {
            Path p = queue.poll();
            if (costs[p.x][p.y] <= p.value) {
                continue;
            }
            costs[p.x][p.y] = p.value;
            if (p.x < gx) {
                queue.add(new Path(p.x + 1, p.y, p.value + f));
            }
            if (p.y < gy) {
                queue.add(new Path(p.x, p.y + 1, p.value + f));
            }
            for (int i = 0; i < n; i++) {
                if (p.x + xArr[i] <= gx && p.y + yArr[i] <= gy) {
                    queue.add(new Path(p.x + xArr[i], p.y + yArr[i], p.value + cArr[i]));
                }
            }
        }
        System.out.println(costs[gx][gy]);
    }
    
    static class Path implements Comparable<Path> {
        int x;
        int y;
        int value;
        
        public Path(int x, int y, int value) {
            this.x = x;
            this.y = y;
            this.value = value;
        }
        
        public int compareTo(Path another) {
            return value - another.value;
        }
    }
}
0