結果

問題 No.1390 Get together
ユーザー timitimi
提出日時 2021-03-01 17:03:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 778 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 109,736 KB
最終ジャッジ日時 2024-10-03 00:54:00
合計ジャッジ時間 8,169 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 89 ms
76,928 KB
testcase_04 AC 91 ms
77,056 KB
testcase_05 AC 92 ms
77,184 KB
testcase_06 AC 90 ms
77,184 KB
testcase_07 AC 87 ms
76,800 KB
testcase_08 AC 88 ms
76,672 KB
testcase_09 AC 93 ms
77,568 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 41 ms
52,352 KB
testcase_12 AC 41 ms
51,840 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 34 ms
51,968 KB
testcase_16 AC 183 ms
92,084 KB
testcase_17 AC 263 ms
107,824 KB
testcase_18 AC 173 ms
92,252 KB
testcase_19 AC 399 ms
109,736 KB
testcase_20 AC 380 ms
109,484 KB
testcase_21 AC 356 ms
109,212 KB
testcase_22 AC 276 ms
103,516 KB
testcase_23 AC 257 ms
102,396 KB
testcase_24 AC 275 ms
103,628 KB
testcase_25 AC 380 ms
109,100 KB
testcase_26 AC 379 ms
109,620 KB
testcase_27 AC 372 ms
108,800 KB
testcase_28 AC 390 ms
109,088 KB
testcase_29 AC 355 ms
109,096 KB
testcase_30 AC 378 ms
109,460 KB
testcase_31 AC 366 ms
109,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
F=max(N,M)
par=[i for i in range(F)]
rank=[0]*(F)
friend=[0]*F
block=[0]*F
size=[1]*F
def find(x):
  if par[x]==x:
    return x
  else:
    par[x]=find(par[x])
    return par[x]
 
#同じ集合か判定
def same(x,y):
  return find(x)==find(y)
 
def union(x,y):
  x=find(x)
  y=find(y)
  if x==y:
    return 
  if rank[x]>rank[y]:
    par[y]=x
    size[x]+=size[y]
  else:
    par[x]=y
    size[y]+=size[x]
    if rank[x]==rank[y]:
      rank[y]+=1
 
D={}
for i in range(N):
  a,b=map(int,input().split())
  a-=1
  b-=1
  if b not in D:
    D[b]=[a]
  else:
    D[b].append(a)

for i in D:
  d=D[i]
  for j in range(len(d)-1):
    union(d[j],d[j+1])
E=[0]*F
ans=0
for i in range(F):
  d=find(i)
  if E[d]==0:
    E[d]=1
  else:
    ans+=1
print(ans)
0