結果

問題 No.994 ばらばらコイン
ユーザー timitimi
提出日時 2021-01-05 09:51:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-10-15 16:38:49
合計ジャッジ時間 6,050 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 373 ms
17,664 KB
testcase_03 AC 397 ms
17,664 KB
testcase_04 AC 398 ms
17,792 KB
testcase_05 AC 207 ms
14,336 KB
testcase_06 AC 383 ms
17,664 KB
testcase_07 AC 386 ms
17,792 KB
testcase_08 AC 273 ms
15,488 KB
testcase_09 AC 372 ms
17,280 KB
testcase_10 AC 274 ms
15,488 KB
testcase_11 AC 309 ms
16,256 KB
testcase_12 AC 323 ms
16,640 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 26 ms
10,496 KB
testcase_15 AC 27 ms
10,496 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 AC 26 ms
10,496 KB
testcase_18 AC 25 ms
10,496 KB
testcase_19 AC 26 ms
10,624 KB
testcase_20 AC 27 ms
10,496 KB
testcase_21 AC 25 ms
10,496 KB
testcase_22 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())  
par=[i for i in range(N)]
rank=[0]*(N)
friend=[0]*N
block=[0]*N
size=[1]*N
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
 
 
for i in range(N-1):
  a,b=map(int,input().split())
  a-=1
  b-=1
  union(a,b)
a=(size[find(0)])
if a<K:
  print(-1)
else:
  print(K-1)
0