結果
問題 | No.2418 情報通だよ!Nafmoくん |
ユーザー | tatt61880 |
提出日時 | 2023-08-14 22:56:53 |
言語 | Kuin (KuinC++ v.2021.9.17) |
結果 |
AC
|
実行時間 | 96 ms / 2,000 ms |
コード長 | 1,216 bytes |
コンパイル時間 | 9,420 ms |
コンパイル使用メモリ | 147,960 KB |
実行使用メモリ | 7,040 KB |
最終ジャッジ日時 | 2024-11-14 12:24:59 |
合計ジャッジ時間 | 11,470 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 87 ms
6,816 KB |
testcase_04 | AC | 14 ms
6,820 KB |
testcase_05 | AC | 62 ms
6,816 KB |
testcase_06 | AC | 57 ms
6,816 KB |
testcase_07 | AC | 68 ms
6,820 KB |
testcase_08 | AC | 59 ms
7,040 KB |
testcase_09 | AC | 82 ms
6,816 KB |
testcase_10 | AC | 89 ms
6,816 KB |
testcase_11 | AC | 76 ms
6,820 KB |
testcase_12 | AC | 52 ms
6,820 KB |
testcase_13 | AC | 26 ms
6,816 KB |
testcase_14 | AC | 47 ms
6,816 KB |
testcase_15 | AC | 60 ms
6,816 KB |
testcase_16 | AC | 96 ms
6,820 KB |
testcase_17 | AC | 31 ms
6,816 KB |
testcase_18 | AC | 45 ms
6,816 KB |
testcase_19 | AC | 10 ms
6,820 KB |
testcase_20 | AC | 67 ms
6,816 KB |
testcase_21 | AC | 31 ms
6,816 KB |
testcase_22 | AC | 36 ms
6,816 KB |
testcase_23 | AC | 2 ms
6,816 KB |
ソースコード
func main() var n: int :: cui@inputInt() var uni: UnionFind :: (#UnionFind).init(2 * n) var m: int :: cui@inputInt() for(1, m) var u: int :: cui@inputInt() - 1 var v: int :: cui@inputInt() - 1 do uni.unite(u, v) end for var arr: []int :: #[2 * n + 1]int for i(0, 2 * n - 1) do arr[uni.size(i)] :+ 1 end for var ans: int :: 0 for i(1, 2 * n - 1, 2) do ans :+ arr[i] / i end for do ans :/ 2 do cui@print("\{ans}\n") class UnionFind() var parents: []int +func init(n: int): UnionFind do me.parents :: [-1].repeat(n) ret me end func +func size(x: int): int ret -me.parents[me.root(x)] end func +func same(x: int, y: int): bool ret me.root(x) = me.root(y) end func +func unite(x: int, y: int): bool do x :: me.root(x) do y :: me.root(y) if(x = y) ret false end if if(me.size(x) < me.size(y)) do me.parents[y] :+ me.parents[x] do me.parents[x] :: y else do me.parents[x] :+ me.parents[y] do me.parents[y] :: x end if ret true end func func root(x: int): int if(me.parents[x] < 0) ret x else do me.parents[x] :: me.root(me.parents[x]) ret me.parents[x] end if end func end class end func