結果
問題 | No.160 最短経路のうち辞書順最小 |
ユーザー | tenten |
提出日時 | 2020-12-22 15:01:59 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 628 ms / 5,000 ms |
コード長 | 2,312 bytes |
コンパイル時間 | 2,576 ms |
コンパイル使用メモリ | 80,932 KB |
実行使用メモリ | 49,648 KB |
最終ジャッジ日時 | 2024-09-21 14:11:24 |
合計ジャッジ時間 | 12,133 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
41,172 KB |
testcase_01 | AC | 137 ms
41,424 KB |
testcase_02 | AC | 136 ms
41,332 KB |
testcase_03 | AC | 146 ms
41,848 KB |
testcase_04 | AC | 309 ms
47,960 KB |
testcase_05 | AC | 421 ms
48,868 KB |
testcase_06 | AC | 521 ms
49,440 KB |
testcase_07 | AC | 257 ms
46,456 KB |
testcase_08 | AC | 265 ms
46,444 KB |
testcase_09 | AC | 256 ms
46,380 KB |
testcase_10 | AC | 273 ms
46,976 KB |
testcase_11 | AC | 281 ms
47,516 KB |
testcase_12 | AC | 260 ms
46,916 KB |
testcase_13 | AC | 263 ms
46,164 KB |
testcase_14 | AC | 262 ms
46,400 KB |
testcase_15 | AC | 254 ms
46,940 KB |
testcase_16 | AC | 264 ms
46,268 KB |
testcase_17 | AC | 281 ms
46,128 KB |
testcase_18 | AC | 261 ms
46,144 KB |
testcase_19 | AC | 255 ms
46,348 KB |
testcase_20 | AC | 260 ms
46,172 KB |
testcase_21 | AC | 252 ms
45,928 KB |
testcase_22 | AC | 255 ms
46,892 KB |
testcase_23 | AC | 266 ms
46,788 KB |
testcase_24 | AC | 278 ms
46,876 KB |
testcase_25 | AC | 255 ms
46,708 KB |
testcase_26 | AC | 253 ms
46,440 KB |
testcase_27 | AC | 206 ms
42,988 KB |
testcase_28 | AC | 628 ms
49,648 KB |
testcase_29 | AC | 196 ms
42,204 KB |
ソースコード
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 start = sc.nextInt(); int goal = sc.nextInt(); ArrayList<TreeMap<Integer, Integer>> graph = new ArrayList<>(); for (int i = 0; i < n; i++) { graph.add(new TreeMap<>()); } for (int i = 0; i < m; i++) { int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); graph.get(a).put(b, c); graph.get(b).put(a, c); } PriorityQueue<Path> queue = new PriorityQueue<>(); queue.add(new Path(goal, 0)); int[] costs = new int[n]; Arrays.fill(costs, Integer.MAX_VALUE / 2); while (queue.size() > 0) { Path p = queue.poll(); if (costs[p.idx] <= p.value) { continue; } costs[p.idx] = p.value; for (Map.Entry<Integer, Integer> entry : graph.get(p.idx).entrySet()) { queue.add(new Path(entry.getKey(), p.value + entry.getValue())); } } int current = start; int total = 0; ArrayList<Integer> ans = new ArrayList<>(); ans.add(start); while (current != goal) { for (Map.Entry<Integer, Integer> entry : graph.get(current).entrySet()) { if (costs[entry.getKey()] + total + entry.getValue() == costs[start]) { total += entry.getValue(); current = entry.getKey(); ans.add(current); break; } } } StringBuilder sb = new StringBuilder(); for (int i = 0; i < ans.size(); i++) { if (i > 0) { sb.append(" "); } sb.append(ans.get(i)); } System.out.println(sb); } static class Path implements Comparable<Path> { int idx; int value; public Path(int idx, int value) { this.idx = idx; this.value = value; } public int compareTo(Path another) { return value - another.value; } } }