結果

問題 No.2888 Mamehinata
ユーザー timitimi
提出日時 2024-09-13 21:39:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 764 ms / 2,000 ms
コード長 1,040 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 114,524 KB
最終ジャッジ日時 2024-09-13 21:39:32
合計ジャッジ時間 21,213 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,376 KB
testcase_01 AC 46 ms
53,888 KB
testcase_02 AC 46 ms
54,144 KB
testcase_03 AC 46 ms
54,144 KB
testcase_04 AC 46 ms
54,400 KB
testcase_05 AC 48 ms
54,400 KB
testcase_06 AC 47 ms
53,888 KB
testcase_07 AC 45 ms
54,016 KB
testcase_08 AC 48 ms
54,016 KB
testcase_09 AC 46 ms
53,888 KB
testcase_10 AC 47 ms
54,144 KB
testcase_11 AC 47 ms
53,504 KB
testcase_12 AC 49 ms
54,528 KB
testcase_13 AC 229 ms
80,000 KB
testcase_14 AC 191 ms
88,576 KB
testcase_15 AC 509 ms
97,536 KB
testcase_16 AC 645 ms
105,344 KB
testcase_17 AC 164 ms
92,544 KB
testcase_18 AC 348 ms
85,696 KB
testcase_19 AC 669 ms
105,472 KB
testcase_20 AC 614 ms
101,120 KB
testcase_21 AC 591 ms
99,584 KB
testcase_22 AC 267 ms
97,024 KB
testcase_23 AC 320 ms
104,832 KB
testcase_24 AC 603 ms
108,928 KB
testcase_25 AC 492 ms
107,520 KB
testcase_26 AC 493 ms
107,008 KB
testcase_27 AC 242 ms
101,376 KB
testcase_28 AC 262 ms
82,688 KB
testcase_29 AC 398 ms
90,496 KB
testcase_30 AC 718 ms
108,672 KB
testcase_31 AC 608 ms
103,808 KB
testcase_32 AC 483 ms
95,744 KB
testcase_33 AC 593 ms
101,504 KB
testcase_34 AC 523 ms
98,048 KB
testcase_35 AC 505 ms
95,204 KB
testcase_36 AC 714 ms
110,464 KB
testcase_37 AC 764 ms
111,616 KB
testcase_38 AC 355 ms
87,680 KB
testcase_39 AC 652 ms
105,472 KB
testcase_40 AC 757 ms
112,656 KB
testcase_41 AC 295 ms
83,340 KB
testcase_42 AC 677 ms
106,768 KB
testcase_43 AC 339 ms
107,560 KB
testcase_44 AC 358 ms
110,712 KB
testcase_45 AC 387 ms
114,524 KB
testcase_46 AC 148 ms
81,920 KB
testcase_47 AC 355 ms
110,068 KB
testcase_48 AC 350 ms
100,024 KB
testcase_49 AC 121 ms
77,184 KB
testcase_50 AC 192 ms
84,992 KB
testcase_51 AC 123 ms
76,672 KB
testcase_52 AC 89 ms
72,960 KB
testcase_53 AC 107 ms
76,160 KB
testcase_54 AC 46 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
#A=list(map(int, input().split()))
D=[[] for i in range(N)]
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(M):
  x,y=map(int,input().split())
  x-=1;y-=1
  union(x,y)
  D[x].append(y);D[y].append(x)
  
from collections import deque
d=deque()
V=[-1]*N 
V[0]=0
d.append(0)
E=[0]*(N+1)
E[0]+=1
while d:
  now=d.popleft()
  for nex in D[now]:
    if V[nex]==-1:
      V[nex]=V[now]+1
      d.append(nex)
      E[V[nex]]+=1

d=find(0)
if size[d]!=1:
  p,q=1,0 
  for i in range(1,N+1):
    if i%2==1:
      q+=E[i]
      print(q)
    else:
      p+=E[i]
      print(p)
else:
  for i in range(N):
    print(0)
0