結果

問題 No.867 避難経路
ユーザー tentententen
提出日時 2021-03-04 20:17:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 3,571 ms / 6,000 ms
コード長 2,573 bytes
コンパイル時間 2,747 ms
コンパイル使用メモリ 80,368 KB
実行使用メモリ 150,160 KB
最終ジャッジ日時 2024-10-05 08:27:34
合計ジャッジ時間 86,155 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
41,612 KB
testcase_01 AC 167 ms
41,856 KB
testcase_02 AC 156 ms
41,996 KB
testcase_03 AC 157 ms
41,496 KB
testcase_04 AC 159 ms
41,956 KB
testcase_05 AC 157 ms
41,144 KB
testcase_06 AC 140 ms
41,556 KB
testcase_07 AC 153 ms
41,488 KB
testcase_08 AC 146 ms
41,904 KB
testcase_09 AC 157 ms
41,532 KB
testcase_10 AC 154 ms
41,528 KB
testcase_11 AC 153 ms
41,584 KB
testcase_12 AC 157 ms
41,952 KB
testcase_13 AC 146 ms
41,680 KB
testcase_14 AC 154 ms
41,856 KB
testcase_15 AC 2,897 ms
110,492 KB
testcase_16 AC 3,144 ms
128,616 KB
testcase_17 AC 2,781 ms
103,224 KB
testcase_18 AC 3,316 ms
124,840 KB
testcase_19 AC 3,368 ms
129,660 KB
testcase_20 AC 3,251 ms
122,124 KB
testcase_21 AC 3,571 ms
132,620 KB
testcase_22 AC 3,334 ms
124,744 KB
testcase_23 AC 3,015 ms
109,596 KB
testcase_24 AC 3,495 ms
129,792 KB
testcase_25 AC 3,485 ms
137,048 KB
testcase_26 AC 3,377 ms
137,720 KB
testcase_27 AC 3,139 ms
123,224 KB
testcase_28 AC 2,423 ms
90,520 KB
testcase_29 AC 2,632 ms
87,368 KB
testcase_30 AC 1,966 ms
89,548 KB
testcase_31 AC 2,110 ms
88,832 KB
testcase_32 AC 1,911 ms
83,280 KB
testcase_33 AC 1,921 ms
81,404 KB
testcase_34 AC 2,212 ms
95,576 KB
testcase_35 AC 3,048 ms
150,160 KB
testcase_36 AC 1,948 ms
90,000 KB
testcase_37 AC 2,647 ms
131,860 KB
testcase_38 AC 2,423 ms
126,660 KB
testcase_39 AC 2,286 ms
115,720 KB
testcase_40 AC 2,264 ms
107,492 KB
testcase_41 AC 117 ms
41,040 KB
testcase_42 AC 127 ms
41,280 KB
testcase_43 AC 118 ms
40,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int h = sc.nextInt();
        int w = sc.nextInt();
        PriorityQueue<Path> queue = new PriorityQueue<>();
        queue.add(new Path((sc.nextInt() - 1) * w + sc.nextInt() - 1, 1, 0));
        int[] field = new int[h * w];
        ArrayList<TreeMap<Integer, Integer>> costs = new ArrayList<>();
        for (int i = 0; i < h; i++) {
            for (int j = 0; j < w; j++) {
                field[i * w + j] = sc.nextInt();
                costs.add(new TreeMap<>());
            }
        }
        while (queue.size() > 0) {
            Path p = queue.poll();
            if (costs.get(p.idx).size() > 0 && costs.get(p.idx).lastEntry().getValue() <= p.value) {
                continue;
            }
            costs.get(p.idx).put(p.count, p.value);
            if (p.idx % w > 0) {
                queue.add(new Path(p.idx - 1, p.count + 1, p.value + field[p.idx]));
            }
            if (p.idx % w < w - 1) {
                queue.add(new Path(p.idx + 1, p.count + 1, p.value + field[p.idx]));
            }
            if (p.idx / w > 0) {
                queue.add(new Path(p.idx - w, p.count + 1, p.value + field[p.idx]));
            }
            if (p.idx / w < h - 1) {
                queue.add(new Path(p.idx + w, p.count + 1, p.value + field[p.idx]));
            }
        }
        StringBuilder sb = new StringBuilder();
        int q = sc.nextInt();
        for (int i = 0; i < q; i++) {
            int idx = (sc.nextInt() - 1) * w + sc.nextInt() - 1;
            long k = sc.nextInt();
            k *= k;
            long ans = Long.MAX_VALUE;
            for (Map.Entry<Integer, Integer> entry : costs.get(idx).entrySet()) {
                int key = entry.getKey();
                int value = entry.getValue();
                ans = Math.min(ans, k * key + value + field[idx]);
            }
            sb.append(ans).append("\n");
        }
        System.out.print(sb);
    }
    
    static class Path implements Comparable<Path> {
        int idx;
        int count;
        int value;
        
        public Path(int idx, int count, int value) {
            this.idx = idx;
            this.count = count;
            this.value = value;
        }
        
        public int compareTo(Path another) {
            if (count == another.count) {
                return value - another.value;
            } else {
                return count - another.count;
            }
        }
    }
}
0