結果
問題 | No.1283 Extra Fee |
ユーザー | tenten |
提出日時 | 2020-11-09 19:58:23 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,976 ms / 2,000 ms |
コード長 | 2,638 bytes |
コンパイル時間 | 2,706 ms |
コンパイル使用メモリ | 78,676 KB |
実行使用メモリ | 98,288 KB |
最終ジャッジ日時 | 2024-11-16 07:12:05 |
合計ジャッジ時間 | 31,674 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
54,016 KB |
testcase_01 | AC | 141 ms
54,036 KB |
testcase_02 | AC | 157 ms
54,400 KB |
testcase_03 | AC | 142 ms
54,216 KB |
testcase_04 | AC | 152 ms
54,428 KB |
testcase_05 | AC | 145 ms
54,252 KB |
testcase_06 | AC | 151 ms
53,996 KB |
testcase_07 | AC | 137 ms
53,916 KB |
testcase_08 | AC | 165 ms
54,424 KB |
testcase_09 | AC | 153 ms
54,112 KB |
testcase_10 | AC | 163 ms
54,164 KB |
testcase_11 | AC | 395 ms
59,020 KB |
testcase_12 | AC | 472 ms
59,148 KB |
testcase_13 | AC | 428 ms
59,284 KB |
testcase_14 | AC | 815 ms
69,352 KB |
testcase_15 | AC | 1,085 ms
71,788 KB |
testcase_16 | AC | 475 ms
59,264 KB |
testcase_17 | AC | 1,739 ms
93,712 KB |
testcase_18 | AC | 1,713 ms
74,228 KB |
testcase_19 | AC | 1,693 ms
73,912 KB |
testcase_20 | AC | 1,753 ms
73,860 KB |
testcase_21 | AC | 1,690 ms
73,920 KB |
testcase_22 | AC | 1,600 ms
73,824 KB |
testcase_23 | AC | 1,453 ms
73,900 KB |
testcase_24 | AC | 1,457 ms
73,876 KB |
testcase_25 | AC | 1,976 ms
74,160 KB |
testcase_26 | AC | 1,711 ms
74,132 KB |
testcase_27 | AC | 1,831 ms
74,100 KB |
testcase_28 | AC | 1,771 ms
74,116 KB |
testcase_29 | AC | 1,890 ms
98,288 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(); int[] fees = new int[n * n]; for (int i = 0; i < m; i++) { int idx = (sc.nextInt() - 1) * n + sc.nextInt() - 1; fees[idx] = sc.nextInt(); } long[][] costs = new long[2][n * n]; Arrays.fill(costs[0], Long.MAX_VALUE); Arrays.fill(costs[1], Long.MAX_VALUE); PriorityQueue<Path> queue = new PriorityQueue<>(); queue.add(new Path(0, 0, 0)); while (queue.size() > 0) { Path p = queue.poll(); if (costs[p.type][p.idx] <= p.value + fees[p.idx]) { continue; } costs[p.type][p.idx] = p.value + fees[p.idx]; if (p.idx / n > 0) { queue.add(new Path(p.idx - n, p.type, p.value + fees[p.idx] + 1)); } if (p.idx / n < n - 1) { queue.add(new Path(p.idx + n, p.type, p.value + fees[p.idx] + 1)); } if (p.idx % n > 0) { queue.add(new Path(p.idx - 1, p.type, p.value + fees[p.idx] + 1)); } if (p.idx % n < n - 1) { queue.add(new Path(p.idx + 1, p.type, p.value + fees[p.idx] + 1)); } if (p.type == 1) { continue; } if (costs[1][p.idx] <= p.value) { continue; } costs[1][p.idx] = p.value; if (p.idx / n > 0) { queue.add(new Path(p.idx - n, 1, p.value + 1)); } if (p.idx / n < n - 1) { queue.add(new Path(p.idx + n, 1, p.value + 1)); } if (p.idx % n > 0) { queue.add(new Path(p.idx - 1, 1, p.value + 1)); } if (p.idx % n < n - 1) { queue.add(new Path(p.idx + 1, 1, p.value + 1)); } } System.out.println(costs[1][n * n - 1]); } static class Path implements Comparable<Path> { int idx; int type; long value; public Path(int idx, int type, long value) { this.idx = idx; this.type = type; this.value = value; } public int compareTo(Path another) { if (value == another.value) { return 0; } else if (value < another.value) { return -1; } else { return 1; } } } }