結果
問題 | No.2739 Time is money |
ユーザー | tenten |
提出日時 | 2024-05-07 18:01:31 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,096 ms / 2,000 ms |
コード長 | 2,520 bytes |
コンパイル時間 | 5,096 ms |
コンパイル使用メモリ | 79,328 KB |
実行使用メモリ | 97,348 KB |
最終ジャッジ日時 | 2024-05-07 18:01:57 |
合計ジャッジ時間 | 21,927 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
36,932 KB |
testcase_01 | AC | 45 ms
36,812 KB |
testcase_02 | AC | 503 ms
66,008 KB |
testcase_03 | AC | 964 ms
75,376 KB |
testcase_04 | AC | 486 ms
65,408 KB |
testcase_05 | AC | 742 ms
65,856 KB |
testcase_06 | AC | 842 ms
69,340 KB |
testcase_07 | AC | 996 ms
86,184 KB |
testcase_08 | AC | 1,096 ms
86,172 KB |
testcase_09 | AC | 1,074 ms
85,544 KB |
testcase_10 | AC | 783 ms
82,552 KB |
testcase_11 | AC | 1,057 ms
85,756 KB |
testcase_12 | AC | 824 ms
86,516 KB |
testcase_13 | AC | 890 ms
97,348 KB |
testcase_14 | AC | 880 ms
85,112 KB |
testcase_15 | AC | 754 ms
78,940 KB |
testcase_16 | AC | 715 ms
80,640 KB |
testcase_17 | AC | 1,023 ms
85,660 KB |
testcase_18 | AC | 1,003 ms
85,408 KB |
testcase_19 | AC | 868 ms
87,804 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); long base = sc.nextInt(); List<List<Path>> graph = new ArrayList<>(); for (int i = 0; i < n; i++) { graph.add(new ArrayList<>()); } for (int i = 0; i < m; i++) { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; long c = sc.nextInt() + sc.nextInt() * base; graph.get(a).add(new Path(b, c)); graph.get(b).add(new Path(a, c)); } PriorityQueue<Path> queue = new PriorityQueue<>(); queue.add(new Path(0, 0)); long[] costs = new long[n]; Arrays.fill(costs, Long.MAX_VALUE); while (queue.size() > 0) { Path p = queue.poll(); if (costs[p.idx] <= p.value) { continue; } costs[p.idx] = p.value; for (Path x : graph.get(p.idx)) { queue.add(new Path(x.idx, p.value + x.value)); } } System.out.println(costs[n - 1] == Long.MAX_VALUE ? -1 : (costs[n - 1] + base - 1) / base); } 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) { return Long.compare(value, another.value); } } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }