結果
問題 | No.1473 おでぶなおばけさん |
ユーザー | 小野寺健 |
提出日時 | 2021-04-26 08:49:58 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,482 bytes |
コンパイル時間 | 3,847 ms |
コンパイル使用メモリ | 78,940 KB |
実行使用メモリ | 80,628 KB |
最終ジャッジ日時 | 2024-07-04 17:25:50 |
合計ジャッジ時間 | 40,103 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
46,844 KB |
testcase_01 | AC | 127 ms
41,060 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 1,529 ms
72,008 KB |
testcase_04 | AC | 1,382 ms
63,404 KB |
testcase_05 | AC | 889 ms
55,356 KB |
testcase_06 | AC | 1,797 ms
72,548 KB |
testcase_07 | AC | 1,822 ms
75,260 KB |
testcase_08 | TLE | - |
testcase_09 | AC | 1,798 ms
75,020 KB |
testcase_10 | AC | 1,122 ms
66,108 KB |
testcase_11 | AC | 1,365 ms
66,696 KB |
testcase_12 | AC | 1,165 ms
65,996 KB |
testcase_13 | AC | 825 ms
61,496 KB |
testcase_14 | AC | 773 ms
55,812 KB |
testcase_15 | AC | 1,137 ms
65,328 KB |
testcase_16 | AC | 1,152 ms
65,020 KB |
testcase_17 | AC | 362 ms
48,280 KB |
testcase_18 | AC | 491 ms
48,612 KB |
testcase_19 | AC | 1,268 ms
64,420 KB |
testcase_20 | AC | 1,327 ms
70,556 KB |
testcase_21 | AC | 1,996 ms
66,684 KB |
testcase_22 | AC | 1,455 ms
71,964 KB |
testcase_23 | AC | 1,195 ms
70,228 KB |
testcase_24 | AC | 1,276 ms
70,328 KB |
testcase_25 | TLE | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
ソースコード
package yukicoder; import java.util.Scanner; import java.util.List; import java.util.ArrayList; public class No1473_2 { private static class Q { public int i; public long d; public Q(int i, long d) { this.i = i; this.d = d; } } private static int n; private static List<List<Q>> V; public static void main(String[] args) { Scanner scan = new Scanner(System.in); n = scan.nextInt(); int m = scan.nextInt(); V = new ArrayList<List<Q>>(); for (int i = 0; i < n; i++) { V.add(new ArrayList<Q>()); } long max_d = 0; for (int i=0; i < m; i++) { int s = scan.nextInt() - 1; int t = scan.nextInt() - 1; long d = scan.nextLong(); V.get(s).add(new Q(t, d)); V.get(t).add(new Q(s, d)); max_d = Math.max(max_d, d); } scan.close(); Q l = new Q(0, 0L), r = new Q(0, max_d + 1); while (r.d - l.d > 1) { long mid = (r.d + l.d) / 2; int c = bfs(mid); if (c == 0) { r.d = mid; r.i = 0; } else { l.d = mid; l.i = c; } } System.out.println(String.format("%d %d", l.d,l.i)); } private static int bfs(long w) { boolean[] B = new boolean[n]; List<Integer[]> q = new ArrayList<Integer[]>(); q.add(new Integer[] {0, 0}); B[0] = true; while (q.size() > 0) { Integer[] v = q.remove(0); if (v[0] == n-1) { return v[1]; } B[v[0]] = true; for (Q i : V.get(v[0])) { if (i.d >= w && !B[i.i]) { q.add(new Integer[] {i.i, v[1] + 1}); } } } return 0; } }