結果
問題 | No.2565 はじめてのおつかい |
ユーザー | ngng628 |
提出日時 | 2023-12-02 16:12:28 |
言語 | Crystal (1.11.2) |
結果 |
AC
|
実行時間 | 375 ms / 2,000 ms |
コード長 | 2,922 bytes |
コンパイル時間 | 14,309 ms |
コンパイル使用メモリ | 295,568 KB |
実行使用メモリ | 55,448 KB |
最終ジャッジ日時 | 2024-09-26 19:58:26 |
合計ジャッジ時間 | 23,166 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,812 KB |
testcase_03 | AC | 375 ms
55,436 KB |
testcase_04 | AC | 142 ms
55,448 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 125 ms
17,336 KB |
testcase_07 | AC | 49 ms
9,856 KB |
testcase_08 | AC | 62 ms
13,696 KB |
testcase_09 | AC | 95 ms
14,336 KB |
testcase_10 | AC | 70 ms
14,336 KB |
testcase_11 | AC | 239 ms
36,480 KB |
testcase_12 | AC | 25 ms
6,016 KB |
testcase_13 | AC | 59 ms
12,800 KB |
testcase_14 | AC | 152 ms
25,856 KB |
testcase_15 | AC | 140 ms
24,320 KB |
testcase_16 | AC | 233 ms
49,152 KB |
testcase_17 | AC | 24 ms
9,984 KB |
testcase_18 | AC | 50 ms
19,840 KB |
testcase_19 | AC | 214 ms
31,360 KB |
testcase_20 | AC | 181 ms
29,568 KB |
testcase_21 | AC | 193 ms
30,080 KB |
testcase_22 | AC | 75 ms
20,352 KB |
testcase_23 | AC | 97 ms
20,224 KB |
testcase_24 | AC | 15 ms
6,944 KB |
testcase_25 | AC | 177 ms
30,848 KB |
testcase_26 | AC | 84 ms
19,200 KB |
testcase_27 | AC | 167 ms
33,152 KB |
testcase_28 | AC | 204 ms
30,080 KB |
testcase_29 | AC | 234 ms
40,064 KB |
testcase_30 | AC | 187 ms
36,480 KB |
testcase_31 | AC | 185 ms
30,848 KB |
testcase_32 | AC | 81 ms
18,560 KB |
testcase_33 | AC | 189 ms
34,688 KB |
testcase_34 | AC | 167 ms
26,368 KB |
testcase_35 | AC | 214 ms
42,496 KB |
testcase_36 | AC | 192 ms
34,560 KB |
testcase_37 | AC | 87 ms
19,456 KB |
testcase_38 | AC | 165 ms
26,496 KB |
testcase_39 | AC | 133 ms
24,892 KB |
testcase_40 | AC | 211 ms
39,424 KB |
testcase_41 | AC | 235 ms
42,880 KB |
testcase_42 | AC | 77 ms
19,132 KB |
testcase_43 | AC | 143 ms
24,960 KB |
testcase_44 | AC | 53 ms
13,568 KB |
testcase_45 | AC | 29 ms
10,496 KB |
testcase_46 | AC | 162 ms
25,088 KB |
testcase_47 | AC | 67 ms
12,416 KB |
testcase_48 | AC | 62 ms
12,928 KB |
testcase_49 | AC | 25 ms
6,144 KB |
testcase_50 | AC | 73 ms
12,780 KB |
testcase_51 | AC | 2 ms
5,376 KB |
testcase_52 | AC | 41 ms
7,936 KB |
ソースコード
main = -> { n, m = read_line.split.map &.to_i64 graph = NgLib::BfsGraph.new(3 * n) graph2 = NgLib::BfsGraph.new(3 * n) m.times do u, v = read_line.split.map &.to_i64.pred graph.add_edge(u, v, directed: true) graph.add_edge(u + n, v + n, directed: true) graph.add_edge(u + 2*n, v + 2*n, directed: true) graph2.add_edge(u, v, directed: true) graph2.add_edge(u + n, v + n, directed: true) graph2.add_edge(u + 2*n, v + 2*n, directed: true) end graph.add_edge(n - 2, n - 2 + n, directed: true) graph.add_edge(n - 1 + n, n - 1 + 2*n, directed: true) graph2.add_edge(n - 1, n - 1 + n, directed: true) graph2.add_edge(n - 2 + n, n - 2 + 2*n, directed: true) d = Math.min(graph.shortest_path(0, 0 + 2*n), graph2.shortest_path(0, 0 + 2*n)) puts d >= OO ? -1 : d - 2 } main.call OO = (1_i64 << 62) - (1_i64 << 31) module NgLib # $n$ 頂点 $m$ 辺からなるグラフに対して、幅優先探索によって最短経路を求めます。 # # 経路の復元も可能です。 class BfsGraph getter size : Int32 getter graph : Array(Array(Int32)) # $n$ 頂点 $0$ 辺からなるグラフを作成します。 # # ``` # graph = BfsGraph.new(n) # ``` def initialize(n : Int) @size = n.to_i64.to_i32 @graph = Array.new(@size) { Array(Int32).new } end # 辺 $(u, v)$ を追加します。 # # `directed` が `true` の場合、 # 有向辺とみなして、$u$ から $v$ への辺のみ生やします。 # # ``` # graph = BfsGraph.new(n) # graph.add_edge(u, v) # => (u) <---w---> (v) # graph.add_edge(u, v, directed: true) # => (u) ----w---> (v) # ``` def add_edge(u : Int, v : Int, directed : Bool = false) @graph[u.to_i32] << v.to_i32 @graph[v.to_i32] << u.to_i32 unless directed end # 全点対間の最短経路長を返します。 # # ``` # dists = graph.shortest_path # dists # => [[0, 1, 3], [1, 0, 2], [1, 1, 0]] # ``` def shortest_path (0...@size).map { |s| shortest_path(s) } end # 始点 `start` から各頂点への最短経路長を返します。 # # ``` # dist = graph.shortest_path(start: 2) # dist # => [3, 8, 0, 7, 1] # ``` def shortest_path(start : Int) queue = Deque.new([start.to_i32]) dist = Array.new(@size) { |i| i == start ? 0_i64 : OO } until queue.empty? from = queue.shift @graph[from].each do |to| next if dist[to] != OO dist[to] = dist[from] + 1 queue << to end end dist end # 始点 `start` から終点 `dest` への最短経路長を返します。 # # ``` # dist = graph.shortest_path(start: 2, dest: 0) # dist # => 12 # ``` def shortest_path(start : Int, dest : Int) shortest_path(start)[dest] end end end