結果

問題 No.1283 Extra Fee
ユーザー tentententen
提出日時 2020-11-09 20:01:48
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,752 bytes
コンパイル時間 2,343 ms
コンパイル使用メモリ 78,008 KB
実行使用メモリ 86,696 KB
最終ジャッジ日時 2024-11-16 07:10:22
合計ジャッジ時間 34,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,140 KB
testcase_01 AC 132 ms
54,020 KB
testcase_02 AC 137 ms
54,008 KB
testcase_03 AC 129 ms
53,632 KB
testcase_04 AC 120 ms
52,484 KB
testcase_05 AC 115 ms
52,392 KB
testcase_06 AC 147 ms
54,060 KB
testcase_07 AC 130 ms
53,728 KB
testcase_08 AC 170 ms
53,868 KB
testcase_09 AC 148 ms
54,160 KB
testcase_10 AC 146 ms
54,192 KB
testcase_11 AC 406 ms
59,184 KB
testcase_12 AC 477 ms
48,096 KB
testcase_13 AC 475 ms
47,856 KB
testcase_14 AC 1,012 ms
58,532 KB
testcase_15 AC 1,214 ms
59,836 KB
testcase_16 AC 540 ms
48,240 KB
testcase_17 AC 1,898 ms
85,968 KB
testcase_18 AC 1,934 ms
64,100 KB
testcase_19 AC 1,994 ms
64,112 KB
testcase_20 AC 1,915 ms
62,792 KB
testcase_21 AC 1,905 ms
63,184 KB
testcase_22 AC 1,818 ms
62,592 KB
testcase_23 AC 1,616 ms
63,528 KB
testcase_24 AC 1,731 ms
63,868 KB
testcase_25 TLE -
testcase_26 AC 1,907 ms
64,356 KB
testcase_27 AC 1,973 ms
64,424 KB
testcase_28 AC 1,953 ms
63,820 KB
testcase_29 AC 1,921 ms
86,696 KB
権限があれば一括ダウンロードができます

ソースコード

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();
        int[] fees = new int[n * n];
        for (int i = 0; i < m; i++) {
            int idx = (sc.nextInt() - 1) * n + sc.nextInt() - 1;
            fees[idx] = sc.nextInt();
        }
        long[][] costs = new long[2][n * n];
        Arrays.fill(costs[0], Long.MAX_VALUE);
        Arrays.fill(costs[1], Long.MAX_VALUE);
        PriorityQueue<Path> queue = new PriorityQueue<>();
        queue.add(new Path(0, 0, 0));
        queue.add(new Path(0, 1, 0));
        while (queue.size() > 0) {
            Path p = queue.poll();
            if (costs[p.type][p.idx] <= p.value + fees[p.idx]) {
                continue;
            }
            costs[p.type][p.idx] = p.value + fees[p.idx];
            if (p.idx / n > 0) {
                queue.add(new Path(p.idx - n, p.type, p.value + fees[p.idx] + 1));
            }
            if (p.idx / n < n - 1) {
                queue.add(new Path(p.idx + n, p.type, p.value + fees[p.idx] + 1));
            }
            if (p.idx % n > 0) {
                queue.add(new Path(p.idx - 1, p.type, p.value + fees[p.idx] + 1));
            }
            if (p.idx % n < n - 1) {
                queue.add(new Path(p.idx + 1, p.type, p.value + fees[p.idx] + 1));
            }
            if (p.type == 1) {
                continue;
            }
            if (fees[p.idx] == 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 - n, 1, p.value + 1));
            }
            if (p.idx / n < n - 1) {
                queue.add(new Path(p.idx + n, 1, p.value + 1));
            }
            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));
            }
        }
        System.out.println(costs[1][n * n - 1]);
    }
    
    static class Path implements Comparable<Path> {
        int idx;
        int type;
        long value;
        
        public Path(int idx, int type, long value) {
            this.idx = idx;
            this.type = type;
            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