結果

問題 No.1390 Get together
ユーザー timitimi
提出日時 2021-03-01 16:53:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 781 bytes
コンパイル時間 574 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 109,848 KB
最終ジャッジ日時 2024-10-03 00:53:50
合計ジャッジ時間 8,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
66,944 KB
testcase_01 AC 49 ms
66,944 KB
testcase_02 AC 47 ms
66,304 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 48 ms
66,944 KB
testcase_15 AC 47 ms
66,688 KB
testcase_16 AC 194 ms
92,728 KB
testcase_17 AC 303 ms
108,072 KB
testcase_18 AC 189 ms
92,376 KB
testcase_19 AC 449 ms
109,848 KB
testcase_20 AC 424 ms
109,616 KB
testcase_21 AC 401 ms
109,340 KB
testcase_22 AC 304 ms
103,444 KB
testcase_23 AC 285 ms
102,640 KB
testcase_24 AC 308 ms
104,012 KB
testcase_25 AC 419 ms
109,348 KB
testcase_26 AC 404 ms
109,628 KB
testcase_27 AC 428 ms
108,800 KB
testcase_28 AC 444 ms
109,360 KB
testcase_29 AC 411 ms
109,352 KB
testcase_30 AC 435 ms
109,844 KB
testcase_31 AC 422 ms
108,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
f=2*10**5+1
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(N):
  d=find(i)
  if E[d]==0:
    E[d]=1
  else:
    ans+=1
print(ans)
0