結果
問題 | No.556 仁義なきサルたち |
ユーザー | 👑 obakyan |
提出日時 | 2019-05-04 18:27:26 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
AC
|
実行時間 | 11 ms / 2,000 ms |
コード長 | 703 bytes |
コンパイル時間 | 68 ms |
コンパイル使用メモリ | 6,816 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 04:26:54 |
合計ジャッジ時間 | 912 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,944 KB |
testcase_12 | AC | 3 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 5 ms
6,940 KB |
testcase_15 | AC | 5 ms
6,944 KB |
testcase_16 | AC | 5 ms
6,944 KB |
testcase_17 | AC | 6 ms
6,944 KB |
testcase_18 | AC | 8 ms
6,944 KB |
testcase_19 | AC | 10 ms
6,944 KB |
testcase_20 | AC | 11 ms
6,940 KB |
testcase_21 | AC | 11 ms
6,940 KB |
ソースコード
local ior = io.input() local n, m = ior:read("*n", "*n") local parent, gnum = {}, {} for i = 1, n do parent[i], gnum[i] = i, 1 end local function findroot(idx) while(parent[idx] ~= idx) do idx = parent[idx] end return idx end for i = 1, m do local a, b = ior:read("*n", "*n") local ar, br = findroot(a), findroot(b) parent[a], parent[b] = ar, br if(ar ~= br) then local an, bn = gnum[ar], gnum[br] local dst = true if(an < bn or (an == bn and br < ar)) then gnum[ar], gnum[br] = 0, gnum[ar] + gnum[br] parent[ar] = br else gnum[ar], gnum[br] = gnum[ar] + gnum[br], 0 parent[br] = ar end end end for i = 1, n do print(findroot(i)) end