結果

問題 No.1390 Get together
ユーザー gmm_teagmm_tea
提出日時 2021-02-12 23:27:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 879 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 40,320 KB
最終ジャッジ日時 2024-07-20 01:10:06
合計ジャッジ時間 17,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 AC 92 ms
12,288 KB
testcase_02 AC 94 ms
12,160 KB
testcase_03 AC 108 ms
12,928 KB
testcase_04 AC 104 ms
12,800 KB
testcase_05 AC 105 ms
12,800 KB
testcase_06 AC 105 ms
12,544 KB
testcase_07 AC 108 ms
12,928 KB
testcase_08 AC 102 ms
12,800 KB
testcase_09 AC 109 ms
13,056 KB
testcase_10 AC 95 ms
12,032 KB
testcase_11 AC 95 ms
12,032 KB
testcase_12 AC 92 ms
12,160 KB
testcase_13 AC 89 ms
12,032 KB
testcase_14 AC 90 ms
12,160 KB
testcase_15 AC 92 ms
12,160 KB
testcase_16 AC 795 ms
37,888 KB
testcase_17 AC 698 ms
30,336 KB
testcase_18 AC 877 ms
40,320 KB
testcase_19 AC 823 ms
30,336 KB
testcase_20 AC 837 ms
30,464 KB
testcase_21 AC 832 ms
30,464 KB
testcase_22 AC 840 ms
35,072 KB
testcase_23 AC 830 ms
34,816 KB
testcase_24 AC 879 ms
34,944 KB
testcase_25 AC 865 ms
30,336 KB
testcase_26 AC 831 ms
30,464 KB
testcase_27 AC 825 ms
30,336 KB
testcase_28 AC 826 ms
30,336 KB
testcase_29 AC 830 ms
30,464 KB
testcase_30 AC 826 ms
31,744 KB
testcase_31 AC 812 ms
30,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m=gets.split.map(&:to_i)
lc=[]
n.times do
  lc << []
end
n.times do
  b,c=gets.split.map(&:to_i).map{|x|x-1}
  lc[c] << b
end

l=[]
m.times do |i|
  l << i
end
lc.each do |lcc|
  a=0
  lcc.uniq.each.with_index do |ll,i|
    if i==0
      a=ll
      next
    end
    b=ll
    s=[a,b]
    k=a
    while l[k]!=k
      k=l[k]
      s << k
    end
    k=b
    while l[k]!=k
      k=l[k]
      s << k
    end
    min=s.min
    s.uniq.each do |t|
      l[t]=min if l[t]!=min
    end
  end
end
m.times do |i|
  if l[i]!=i&&l[i]!=l[l[i]]
    l[i]=l[l[i]]
  end
end
ans=m
m.times do |i|
  if l[i]==i
    ans-=1
  end
end
puts ans
0