結果

問題 No.1473 おでぶなおばけさん
ユーザー 👑 obakyanobakyan
提出日時 2021-05-24 16:02:44
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 1,187 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 32,768 KB
最終ジャッジ日時 2024-10-13 00:23:18
合計ジャッジ時間 12,009 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 360 ms
31,488 KB
testcase_03 AC 258 ms
27,008 KB
testcase_04 AC 175 ms
18,560 KB
testcase_05 AC 53 ms
8,576 KB
testcase_06 AC 288 ms
28,032 KB
testcase_07 AC 353 ms
32,128 KB
testcase_08 AC 384 ms
32,768 KB
testcase_09 AC 352 ms
32,128 KB
testcase_10 AC 226 ms
17,792 KB
testcase_11 AC 220 ms
17,792 KB
testcase_12 AC 224 ms
17,792 KB
testcase_13 AC 128 ms
12,928 KB
testcase_14 AC 87 ms
9,856 KB
testcase_15 AC 202 ms
16,512 KB
testcase_16 AC 219 ms
17,408 KB
testcase_17 AC 13 ms
5,248 KB
testcase_18 AC 20 ms
5,248 KB
testcase_19 AC 167 ms
16,256 KB
testcase_20 AC 225 ms
24,832 KB
testcase_21 AC 254 ms
21,760 KB
testcase_22 AC 266 ms
29,056 KB
testcase_23 AC 212 ms
26,368 KB
testcase_24 AC 212 ms
23,680 KB
testcase_25 AC 256 ms
28,416 KB
testcase_26 AC 267 ms
27,136 KB
testcase_27 AC 97 ms
12,032 KB
testcase_28 AC 322 ms
31,744 KB
testcase_29 AC 211 ms
21,632 KB
testcase_30 AC 250 ms
24,192 KB
testcase_31 AC 312 ms
32,128 KB
testcase_32 AC 241 ms
28,544 KB
testcase_33 AC 210 ms
23,168 KB
testcase_34 AC 109 ms
13,568 KB
testcase_35 AC 117 ms
13,952 KB
testcase_36 AC 196 ms
20,224 KB
testcase_37 AC 204 ms
25,216 KB
testcase_38 AC 40 ms
6,656 KB
testcase_39 AC 219 ms
17,792 KB
testcase_40 AC 226 ms
17,664 KB
testcase_41 AC 225 ms
17,536 KB
testcase_42 AC 221 ms
17,664 KB
testcase_43 AC 199 ms
25,472 KB
testcase_44 AC 199 ms
25,472 KB
testcase_45 AC 200 ms
25,472 KB
testcase_46 AC 248 ms
23,296 KB
testcase_47 AC 302 ms
28,928 KB
testcase_48 AC 261 ms
27,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, m = io.read("*n", "*n")
local parent = {}
local edge = {}
local len = {}
for i = 1, n do
  parent[i] = i
  edge[i] = {}
  len[i] = -1
end
len[1] = 0
local function uf_findroot(idx)
  local idx_update = idx
  while parent[idx] ~= idx do
    idx = parent[idx]
  end
  while parent[idx_update] ~= idx do
    parent[idx_update], idx_update = idx, parent[idx_update]
  end
  return idx
end
local edgeinfo = {}
for i = 1, m do
  edgeinfo[i] = {io.read("*n", "*n", "*n")}
end
table.sort(edgeinfo, function(a, b) return a[3] > b[3] end)
local w = 0
for i = 1, m do
  local a, b = edgeinfo[i][1], edgeinfo[i][2]
  local c = edgeinfo[i][3]
  if c < w then break end
  table.insert(edge[a], b)
  table.insert(edge[b], a)
  local ra, rb = uf_findroot(a), uf_findroot(b)
  parent[rb], parent[b] = ra, ra
  local r1, rn = uf_findroot(1), uf_findroot(n)
  if r1 == rn then
    w = edgeinfo[i][3]
  end
end

local tasks = {1}
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(w .. " " .. len[n])
0