結果
問題 | No.807 umg tours |
ユーザー | htensai |
提出日時 | 2020-02-17 10:15:20 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,632 ms / 4,000 ms |
コード長 | 2,251 bytes |
コンパイル時間 | 3,542 ms |
コンパイル使用メモリ | 79,440 KB |
実行使用メモリ | 114,076 KB |
最終ジャッジ日時 | 2024-11-23 19:50:27 |
合計ジャッジ時間 | 21,744 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 79 ms
37,328 KB |
testcase_01 | AC | 81 ms
38,000 KB |
testcase_02 | AC | 85 ms
39,012 KB |
testcase_03 | AC | 82 ms
38,588 KB |
testcase_04 | AC | 76 ms
38,000 KB |
testcase_05 | AC | 84 ms
37,596 KB |
testcase_06 | AC | 92 ms
39,144 KB |
testcase_07 | AC | 95 ms
38,824 KB |
testcase_08 | AC | 54 ms
37,036 KB |
testcase_09 | AC | 56 ms
36,732 KB |
testcase_10 | AC | 62 ms
36,980 KB |
testcase_11 | AC | 1,306 ms
89,016 KB |
testcase_12 | AC | 1,002 ms
81,532 KB |
testcase_13 | AC | 1,337 ms
92,152 KB |
testcase_14 | AC | 715 ms
66,920 KB |
testcase_15 | AC | 600 ms
60,584 KB |
testcase_16 | AC | 1,397 ms
97,448 KB |
testcase_17 | AC | 1,517 ms
106,312 KB |
testcase_18 | AC | 1,509 ms
112,172 KB |
testcase_19 | AC | 1,557 ms
111,328 KB |
testcase_20 | AC | 915 ms
72,708 KB |
testcase_21 | AC | 999 ms
75,788 KB |
testcase_22 | AC | 539 ms
55,588 KB |
testcase_23 | AC | 445 ms
53,316 KB |
testcase_24 | AC | 1,007 ms
90,828 KB |
testcase_25 | AC | 1,632 ms
114,076 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main (String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] first = br.readLine().split(" ", 2); int n = Integer.parseInt(first[0]); int m = Integer.parseInt(first[1]); ArrayList<Path>[] graph = new ArrayList[n]; for (int i = 0; i < n; i++) { graph[i] = new ArrayList<>(); } for (int i = 0; i < m; i++) { String[] line = br.readLine().split(" ", 3); int a = Integer.parseInt(line[0]) - 1; int b = Integer.parseInt(line[1]) - 1; int c = Integer.parseInt(line[2]); graph[a].add(new Path(b, c)); graph[b].add(new Path(a, c)); } long[] visited = new long[n]; long[] tickets = new long[n]; Arrays.fill(visited, Long.MAX_VALUE); Arrays.fill(tickets, Long.MAX_VALUE); PriorityQueue<Path> queue = new PriorityQueue<>(); PriorityQueue<Path> next = new PriorityQueue<>(); tickets[0] = 0; queue.add(new Path(0, 0)); while (queue.size() > 0) { Path p = queue.poll(); if (visited[p.idx] <= p.value) { continue; } visited[p.idx] = p.value; for (Path q : graph[p.idx]) { queue.add(new Path(q.idx, p.value + q.value)); next.add(new Path(q.idx, p.value)); } } while (next.size() > 0) { Path p = next.poll(); if (tickets[p.idx] <= p.value) { continue; } tickets[p.idx] = p.value; for (Path q : graph[p.idx]) { next.add(new Path(q.idx, p.value + q.value)); } } StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { sb.append(visited[i] + tickets[i]).append("\n"); } System.out.print(sb); } static class Path implements Comparable<Path> { int idx; long value; public Path(int idx, long value) { this.idx = idx; this.value = value; } public int compareTo(Path another) { if (value == another.value) { return 0; } else if (value < another.value) { return -1; } else { return 1; } } } }