結果

問題 No.1283 Extra Fee
ユーザー tentententen
提出日時 2021-03-19 13:17:43
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,655 bytes
コンパイル時間 4,330 ms
コンパイル使用メモリ 76,736 KB
実行使用メモリ 105,204 KB
最終ジャッジ日時 2023-08-11 14:21:41
合計ジャッジ時間 40,272 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
56,012 KB
testcase_01 AC 115 ms
56,600 KB
testcase_02 AC 124 ms
56,136 KB
testcase_03 AC 120 ms
56,032 KB
testcase_04 AC 120 ms
56,164 KB
testcase_05 AC 119 ms
56,032 KB
testcase_06 AC 135 ms
56,408 KB
testcase_07 AC 121 ms
55,988 KB
testcase_08 AC 156 ms
56,080 KB
testcase_09 AC 133 ms
55,936 KB
testcase_10 AC 133 ms
56,396 KB
testcase_11 AC 373 ms
60,624 KB
testcase_12 AC 471 ms
60,484 KB
testcase_13 AC 412 ms
60,468 KB
testcase_14 AC 848 ms
68,420 KB
testcase_15 AC 1,088 ms
74,792 KB
testcase_16 AC 463 ms
60,644 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 1,842 ms
89,876 KB
testcase_24 AC 1,953 ms
96,004 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        HashMap<Integer, Integer> places = new HashMap<>();
        for (int i = 0; i < m; i++) {
            places.put((sc.nextInt() - 1) * n + sc.nextInt() - 1, sc.nextInt());
        }
        PriorityQueue<Path> queue = new PriorityQueue<>();
        queue.add(new Path(0, 0, 0));
        long[][] costs = new long[2][n * n];
        Arrays.fill(costs[0], Long.MAX_VALUE);
        Arrays.fill(costs[1], Long.MAX_VALUE);
        while (queue.size() > 0) {
            Path p = queue.poll();
            int add = places.getOrDefault(p.idx, 0);
            if (costs[p.level][p.idx] <= p.value + add) {
                continue;
            }
            costs[p.level][p.idx] = p.value + add;
            if (p.idx % n > 0) {
                queue.add(new Path(p.idx - 1, p.level, p.value + 1 + add));
            }
            if (p.idx % n < n - 1) {
                queue.add(new Path(p.idx + 1, p.level, p.value + 1 + add));
            }
            if (p.idx / n > 0) {
                queue.add(new Path(p.idx - n, p.level, p.value + 1 + add));
            }
            if (p.idx / n < n - 1) {
                queue.add(new Path(p.idx + n, p.level, p.value + 1 + add));
            }
            if (p.level > 0) {
                continue;
            }
            if (costs[1][p.idx] <= p.value) {
                continue;
            }
            costs[1][p.idx] = p.value;
            if (p.idx % n > 0) {
                queue.add(new Path(p.idx - 1, 1, p.value + 1));
            }
            if (p.idx % n < n - 1) {
                queue.add(new Path(p.idx + 1, 1, p.value + 1));
            }
            if (p.idx / n > 0) {
                queue.add(new Path(p.idx - n, 1, p.value + 1));
            }
            if (p.idx / n < n - 1) {
                queue.add(new Path(p.idx + n, 1, p.value + 1));
            }
        }
        System.out.println(costs[1][n * n - 1]);
    }
    
    static class Path implements Comparable<Path> {
        int idx;
        int level;
        long value;
        
        public Path(int idx, int level, long value) {
            this.idx = idx;
            this.level = level;
            this.value = value;
        }
        
        public int compareTo(Path another) {
            if (value == another.value) {
                return 0;
            } else if (value < another.value) {
                return -1;
            } else {
                return 1;
            }
        }
    }
 }
0