結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー kou_kkkkou_kkk
提出日時 2024-11-04 08:16:58
言語 Nim
(2.0.2)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 5,198 ms
コンパイル使用メモリ 66,020 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-11-14 12:26:21
合計ジャッジ時間 6,997 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 62 ms
13,824 KB
testcase_04 AC 14 ms
10,112 KB
testcase_05 AC 43 ms
8,192 KB
testcase_06 AC 42 ms
13,184 KB
testcase_07 AC 47 ms
8,064 KB
testcase_08 AC 43 ms
13,824 KB
testcase_09 AC 56 ms
9,856 KB
testcase_10 AC 62 ms
13,568 KB
testcase_11 AC 53 ms
12,544 KB
testcase_12 AC 37 ms
10,752 KB
testcase_13 AC 19 ms
6,816 KB
testcase_14 AC 34 ms
8,448 KB
testcase_15 AC 44 ms
6,820 KB
testcase_16 AC 65 ms
11,648 KB
testcase_17 AC 22 ms
6,816 KB
testcase_18 AC 33 ms
10,624 KB
testcase_19 AC 11 ms
9,088 KB
testcase_20 AC 48 ms
7,168 KB
testcase_21 AC 22 ms
6,912 KB
testcase_22 AC 26 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils, strutils


proc root(x: int, p: var seq[int]): int =
  if p[x] == -1:
    x
  else:
    p[x] = root(p[x], p)
    return p[x]

proc unite(x, y: int; p, rank, size: var seq[int]) =
  var
    rx = root(x, p)
    ry = root(y, p)
  if rank[rx] < rank[ry]:
    swap(rx, ry)
  p[ry] = rx
  if rank[rx] == rank[ry]:
    inc rank[rx]
  size[rx].inc size[ry]


let
  nm = stdin.readLine.split.map parseInt
  n = nm[0]
  m = nm[1]
  ab = m.newSeqWith stdin.readLine.split.map parseInt

var
  p = (-1).repeat n * 2
  rank, size = 1.repeat n * 2

for v in ab:
  var
    a = pred v[0]
    b = pred v[1]
    ra = root(a, p)
    rb = root(b, p)
  if ra != rb:
    unite(a, b, p, rank, size)

var list: seq[int]
for i, v in p:
  if v == -1:
    list.add i

var cnt = 0
for idx in list:
  if size[idx] mod 2 == 1:
    inc cnt

echo:
  cnt div 2
0