結果
問題 | No.845 最長の切符 |
ユーザー | tenten |
提出日時 | 2020-08-31 19:38:00 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,859 bytes |
コンパイル時間 | 2,428 ms |
コンパイル使用メモリ | 80,652 KB |
実行使用メモリ | 57,308 KB |
最終ジャッジ日時 | 2024-11-17 01:41:50 |
合計ジャッジ時間 | 7,818 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 107 ms
40,176 KB |
testcase_01 | AC | 119 ms
41,648 KB |
testcase_02 | AC | 124 ms
41,156 KB |
testcase_03 | AC | 118 ms
41,008 KB |
testcase_04 | AC | 117 ms
40,836 KB |
testcase_05 | AC | 102 ms
40,072 KB |
testcase_06 | AC | 115 ms
40,936 KB |
testcase_07 | WA | - |
testcase_08 | AC | 134 ms
40,948 KB |
testcase_09 | AC | 129 ms
41,536 KB |
testcase_10 | AC | 137 ms
41,508 KB |
testcase_11 | AC | 136 ms
41,444 KB |
testcase_12 | WA | - |
testcase_13 | AC | 127 ms
41,440 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 214 ms
44,064 KB |
testcase_18 | AC | 191 ms
42,352 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 119 ms
41,188 KB |
testcase_26 | AC | 116 ms
41,164 KB |
testcase_27 | AC | 112 ms
40,924 KB |
testcase_28 | AC | 132 ms
40,940 KB |
testcase_29 | AC | 116 ms
41,092 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(); ArrayList<HashMap<Integer, Integer>> graph = new ArrayList<>(); for (int i = 0; i < n; i++) { graph.add(new HashMap<>()); } for (int i = 0; i < m; i++) { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; int c = sc.nextInt(); if (!graph.get(a).containsKey(b) || graph.get(a).get(b) < c) { graph.get(a).put(b, c); graph.get(b).put(a, c); } } PriorityQueue<Path> queue = new PriorityQueue<>(); int[] costs = new int[n]; int max = 0; for (int i = 0; i < n; i++) { queue.add(new Path(i, 0)); getCost(costs, queue, graph); for (int x : costs) { max = Math.max(max, x); } } System.out.println(max); } static void getCost(int[] costs, PriorityQueue<Path> queue, ArrayList<HashMap<Integer, Integer>> graph) { Arrays.fill(costs, -1); boolean[] used = new boolean[costs.length]; while (queue.size() > 0) { Path p = queue.poll(); if (used[p.idx]) { continue; } used[p.idx] = true; costs[p.idx] = p.value; for (int x : graph.get(p.idx).keySet()) { queue.add(new Path(x, p.value + graph.get(p.idx).get(x))); } } } 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 another.value - value; } } }