結果

問題 No.1565 Union
ユーザー 👑 obakyanobakyan
提出日時 2022-02-06 01:24:02
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 30,080 KB
最終ジャッジ日時 2024-05-16 09:58:33
合計ジャッジ時間 5,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 67 ms
6,940 KB
testcase_11 AC 126 ms
23,552 KB
testcase_12 AC 118 ms
10,112 KB
testcase_13 AC 40 ms
8,320 KB
testcase_14 AC 145 ms
18,176 KB
testcase_15 AC 237 ms
29,952 KB
testcase_16 AC 175 ms
27,776 KB
testcase_17 AC 236 ms
29,952 KB
testcase_18 AC 234 ms
30,080 KB
testcase_19 AC 239 ms
29,952 KB
testcase_20 AC 134 ms
29,312 KB
testcase_21 AC 137 ms
29,184 KB
testcase_22 AC 133 ms
29,184 KB
testcase_23 AC 135 ms
29,184 KB
testcase_24 AC 136 ms
29,184 KB
testcase_25 AC 157 ms
29,184 KB
testcase_26 AC 146 ms
29,312 KB
testcase_27 AC 150 ms
29,184 KB
testcase_28 AC 152 ms
29,184 KB
testcase_29 AC 149 ms
29,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, m = io.read("*n", "*n")
local len = {}
local edge = {}
for i = 1, n do
  len[i] = -1
  edge[i] = {}
end
for i = 1, m do
  local a, b = io.read("*n", "*n")
  table.insert(edge[a], b)
  table.insert(edge[b], a)
end
local tasks = {1}
len[1] = 0
local done = 0
while done < #tasks do
  done = done + 1
  local src = tasks[done]
  for i = 1, #edge[src] do
    local dst = edge[src][i]
    if len[dst] < 0 then
      len[dst] = len[src] + 1
      table.insert(tasks, dst)
    end
  end
end
print(0 < len[n] and len[n] or -1)
0