結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 371 ms
31,616 KB
testcase_03 AC 270 ms
27,008 KB
testcase_04 AC 181 ms
18,560 KB
testcase_05 AC 54 ms
8,576 KB
testcase_06 AC 296 ms
28,032 KB
testcase_07 AC 361 ms
32,256 KB
testcase_08 AC 396 ms
32,768 KB
testcase_09 AC 360 ms
32,128 KB
testcase_10 AC 229 ms
17,792 KB
testcase_11 AC 224 ms
17,792 KB
testcase_12 AC 231 ms
17,792 KB
testcase_13 AC 130 ms
12,800 KB
testcase_14 AC 85 ms
9,856 KB
testcase_15 AC 200 ms
16,512 KB
testcase_16 AC 219 ms
17,408 KB
testcase_17 AC 12 ms
5,248 KB
testcase_18 AC 21 ms
5,248 KB
testcase_19 AC 172 ms
16,256 KB
testcase_20 AC 238 ms
24,832 KB
testcase_21 AC 261 ms
21,760 KB
testcase_22 AC 275 ms
29,056 KB
testcase_23 AC 219 ms
26,368 KB
testcase_24 AC 231 ms
23,680 KB
testcase_25 AC 262 ms
28,544 KB
testcase_26 AC 288 ms
27,136 KB
testcase_27 AC 99 ms
12,032 KB
testcase_28 AC 335 ms
31,744 KB
testcase_29 AC 211 ms
21,632 KB
testcase_30 AC 250 ms
24,192 KB
testcase_31 AC 324 ms
32,256 KB
testcase_32 AC 250 ms
28,672 KB
testcase_33 AC 217 ms
23,168 KB
testcase_34 AC 112 ms
13,696 KB
testcase_35 AC 118 ms
14,080 KB
testcase_36 AC 193 ms
20,224 KB
testcase_37 AC 207 ms
25,216 KB
testcase_38 AC 41 ms
6,784 KB
testcase_39 AC 221 ms
17,792 KB
testcase_40 AC 222 ms
17,664 KB
testcase_41 AC 221 ms
17,664 KB
testcase_42 AC 223 ms
17,664 KB
testcase_43 AC 201 ms
25,472 KB
testcase_44 AC 202 ms
25,472 KB
testcase_45 AC 200 ms
25,472 KB
testcase_46 AC 254 ms
23,296 KB
testcase_47 AC 318 ms
29,056 KB
testcase_48 AC 269 ms
27,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=io.read("*n","*n") p= {} e={} l={} for i = 1,n do p[i]=i e[i]={} l[i]=-1 end l[1]=0
function F(i) j=i while p[i]~=i do i=p[i] end while p[j]~=i do p[j],j=i,p[j] end return i end
q={} for i=1,m do q[i]={io.read("*n","*n","*n")} end
table.sort(q,function(a,b) return a[3]>b[3] end) w=0
for i=1,m do a=q[i][1] b=q[i][2] c=q[i][3] if c<w then break end e[a][#e[a]+1]=b e[b][#e[b]+1]=a x=F(a) y=F(b) p[b]=x p[y]=x x=F(1) y=F(n) if x==y then w=c end end t={1} v=0
while v<#t do v=v+1 s=t[v] for i=1,#e[s] do d=e[s][i] if l[d]<0 then l[d]=l[s]+1 t[#t+1]=d end end end print(w .. " " .. l[n])
0