結果

問題 No.1390 Get together
ユーザー gmm_teagmm_tea
提出日時 2021-02-12 22:06:15
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 643 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-07-19 21:47:23
合計ジャッジ時間 16,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,032 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 90 ms
12,032 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 118 ms
12,160 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 93 ms
12,160 KB
testcase_16 AC 833 ms
39,424 KB
testcase_17 AC 709 ms
32,000 KB
testcase_18 AC 884 ms
41,728 KB
testcase_19 AC 832 ms
32,000 KB
testcase_20 AC 835 ms
32,128 KB
testcase_21 AC 846 ms
32,256 KB
testcase_22 AC 831 ms
36,608 KB
testcase_23 AC 834 ms
36,352 KB
testcase_24 AC 838 ms
36,480 KB
testcase_25 AC 827 ms
32,128 KB
testcase_26 AC 830 ms
31,872 KB
testcase_27 AC 828 ms
31,872 KB
testcase_28 AC 829 ms
31,744 KB
testcase_29 AC 832 ms
31,872 KB
testcase_30 AC 839 ms
32,000 KB
testcase_31 AC 836 ms
32,000 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
c=[0]*n
m.times do |i|
  if l[i]!=i&&l[i]!=l[l[i]]
    l[i]=l[l[i]]
  end
  c[l[i]]+=1
end
ans=m
m.times do |i|
  if l[i]==i
    ans-=1
  end
end
puts ans
0