結果
問題 | No.614 壊れたキャンパス |
ユーザー | tenten |
提出日時 | 2021-01-26 14:42:55 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,881 bytes |
コンパイル時間 | 2,631 ms |
コンパイル使用メモリ | 79,564 KB |
実行使用メモリ | 156,324 KB |
最終ジャッジ日時 | 2024-06-23 14:22:01 |
合計ジャッジ時間 | 10,910 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
57,484 KB |
testcase_01 | AC | 54 ms
50,444 KB |
testcase_02 | AC | 53 ms
50,308 KB |
testcase_03 | AC | 55 ms
50,316 KB |
testcase_04 | AC | 56 ms
50,000 KB |
testcase_05 | AC | 53 ms
50,448 KB |
testcase_06 | AC | 54 ms
50,380 KB |
testcase_07 | AC | 55 ms
50,116 KB |
testcase_08 | AC | 1,474 ms
86,876 KB |
testcase_09 | AC | 1,062 ms
94,348 KB |
testcase_10 | AC | 708 ms
81,568 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
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(" ", 5); int n = Integer.parseInt(first[0]); int m = Integer.parseInt(first[1]); int k = Integer.parseInt(first[2]); int s = Integer.parseInt(first[3]); int t = Integer.parseInt(first[4]); ArrayList<ArrayList<Route>> graph = new ArrayList<>(); for (int i = 0; i < n - 1; i++) { graph.add(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]); int c = Integer.parseInt(line[2]); graph.get(a).add(new Route(b, c)); } ArrayList<HashMap<Integer, Long>> costs = new ArrayList<>(); for (int i = 0; i < n; i++) { costs.add(new HashMap<>()); } PriorityQueue<Path> queue = new PriorityQueue<>(); queue.add(new Path(0, s, 0)); while (queue.size() > 0) { Path p = queue.poll(); if (costs.get(p.idx).containsKey(p.floor)) { continue; } costs.get(p.idx).put(p.floor, p.value); if (p.idx == n - 1) { continue; } for (Route x : graph.get(p.idx)) { if (!costs.get(p.idx + 1).containsKey(x.end)) { queue.add(new Path(p.idx + 1, x.end, p.value + Math.abs(p.floor - x.start))); } } } long min = Long.MAX_VALUE; for (Map.Entry<Integer, Long> entry : costs.get(n - 1).entrySet()) { int key = entry.getKey(); long value = entry.getValue(); min = Math.min(min, Math.abs(key - t) + value); } if (min == Long.MAX_VALUE) { System.out.println(-1); } else { System.out.println(min); } } static class Path implements Comparable<Path> { int idx; int floor; long value; public Path(int idx, int floor, long value) { this.idx = idx; this.floor = floor; this.value = value; } public int compareTo(Path another) { if (value == another.value) { return 0; } else if (value < another.value) { return -1; } else { return 1; } } } static class Route { int start; int end; public Route(int start, int end) { this.start = start; this.end = end; } } }