結果
問題 | No.1283 Extra Fee |
ユーザー | ks2m |
提出日時 | 2020-11-06 22:05:16 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,006 ms / 2,000 ms |
コード長 | 1,842 bytes |
コンパイル時間 | 3,647 ms |
コンパイル使用メモリ | 77,892 KB |
実行使用メモリ | 72,232 KB |
最終ジャッジ日時 | 2024-11-16 06:40:22 |
合計ジャッジ時間 | 17,335 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,064 KB |
testcase_01 | AC | 54 ms
50,300 KB |
testcase_02 | AC | 53 ms
49,868 KB |
testcase_03 | AC | 54 ms
50,180 KB |
testcase_04 | AC | 53 ms
50,464 KB |
testcase_05 | AC | 53 ms
50,344 KB |
testcase_06 | AC | 55 ms
50,096 KB |
testcase_07 | AC | 57 ms
49,984 KB |
testcase_08 | AC | 57 ms
50,248 KB |
testcase_09 | AC | 55 ms
50,456 KB |
testcase_10 | AC | 55 ms
50,228 KB |
testcase_11 | AC | 178 ms
54,676 KB |
testcase_12 | AC | 205 ms
55,468 KB |
testcase_13 | AC | 186 ms
55,144 KB |
testcase_14 | AC | 334 ms
57,472 KB |
testcase_15 | AC | 436 ms
59,560 KB |
testcase_16 | AC | 185 ms
55,120 KB |
testcase_17 | AC | 668 ms
66,700 KB |
testcase_18 | AC | 885 ms
71,544 KB |
testcase_19 | AC | 980 ms
71,748 KB |
testcase_20 | AC | 907 ms
71,428 KB |
testcase_21 | AC | 898 ms
71,764 KB |
testcase_22 | AC | 948 ms
67,332 KB |
testcase_23 | AC | 799 ms
65,436 KB |
testcase_24 | AC | 808 ms
67,448 KB |
testcase_25 | AC | 1,006 ms
70,564 KB |
testcase_26 | AC | 988 ms
71,508 KB |
testcase_27 | AC | 948 ms
72,232 KB |
testcase_28 | AC | 935 ms
70,536 KB |
testcase_29 | AC | 696 ms
68,412 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Arrays; import java.util.PriorityQueue; public class Main { static int n, n2; static int[] c; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] sa = br.readLine().split(" "); n = Integer.parseInt(sa[0]); int m = Integer.parseInt(sa[1]); n2 = n * n; c = new int[n2]; for (int i = 0; i < m; i++) { sa = br.readLine().split(" "); int h = Integer.parseInt(sa[0]) - 1; int w = Integer.parseInt(sa[1]) - 1; c[h * n + w] = Integer.parseInt(sa[2]); } br.close(); long[] d = new long[n2]; Arrays.fill(d, Long.MAX_VALUE); d[0] = 0; PriorityQueue<Node> que = new PriorityQueue<Node>(); Node first = new Node(0, 0); que.add(first); dijkstra(d, que); long[] d2 = new long[n2]; for (int i = 0; i < n2; i++) { d2[i] = d[i] - c[i]; } que = new PriorityQueue<Node>(); for (int i = 1; i < n2 - 1; i++) { que.add(new Node(i, d2[i])); } dijkstra(d2, que); System.out.println(d2[n2 - 1]); } static void dijkstra(long[] d, PriorityQueue<Node> que) { int[] dx = {1, -1, n, -n}; while (!que.isEmpty()) { Node cur = que.poll(); if (cur.d > d[cur.v]) { continue; } for (int dd : dx) { int next = cur.v + dd; if (next < 0 || n2 <= next) { continue; } if (next / n != cur.v / n && (dd == -1 || dd == 1)) { continue; } long alt = d[cur.v] + 1 + c[next]; if (alt < d[next]) { d[next] = alt; que.add(new Node(next, alt)); } } } } static class Node implements Comparable<Node> { int v; long d; public Node(int v, long d) { this.v = v; this.d = d; } public int compareTo(Node o) { return Long.compare(d, o.d); } } }