結果

問題 No.2888 Mamehinata
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-13 21:41:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 544 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 153,140 KB
最終ジャッジ日時 2024-09-13 21:42:13
合計ジャッジ時間 16,397 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 41 ms
52,736 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 40 ms
52,480 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 163 ms
81,152 KB
testcase_14 AC 150 ms
95,488 KB
testcase_15 AC 331 ms
94,344 KB
testcase_16 AC 425 ms
138,752 KB
testcase_17 AC 126 ms
88,064 KB
testcase_18 AC 220 ms
86,400 KB
testcase_19 AC 502 ms
139,492 KB
testcase_20 AC 412 ms
124,032 KB
testcase_21 AC 403 ms
122,524 KB
testcase_22 AC 166 ms
91,648 KB
testcase_23 AC 218 ms
97,280 KB
testcase_24 AC 406 ms
140,960 KB
testcase_25 AC 320 ms
135,936 KB
testcase_26 AC 348 ms
139,500 KB
testcase_27 AC 205 ms
129,408 KB
testcase_28 AC 136 ms
84,836 KB
testcase_29 AC 226 ms
103,936 KB
testcase_30 AC 486 ms
148,864 KB
testcase_31 AC 430 ms
134,784 KB
testcase_32 AC 299 ms
109,696 KB
testcase_33 AC 407 ms
124,480 KB
testcase_34 AC 330 ms
119,820 KB
testcase_35 AC 298 ms
115,840 KB
testcase_36 AC 544 ms
141,468 KB
testcase_37 AC 539 ms
149,772 KB
testcase_38 AC 194 ms
96,384 KB
testcase_39 AC 453 ms
133,612 KB
testcase_40 AC 543 ms
153,140 KB
testcase_41 AC 151 ms
88,320 KB
testcase_42 AC 480 ms
138,604 KB
testcase_43 AC 360 ms
129,216 KB
testcase_44 AC 364 ms
126,928 KB
testcase_45 AC 410 ms
151,880 KB
testcase_46 AC 121 ms
84,224 KB
testcase_47 AC 363 ms
136,552 KB
testcase_48 AC 354 ms
123,792 KB
testcase_49 AC 96 ms
76,884 KB
testcase_50 AC 163 ms
84,556 KB
testcase_51 AC 71 ms
72,576 KB
testcase_52 AC 67 ms
69,248 KB
testcase_53 AC 84 ms
76,160 KB
testcase_54 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
e=[[] for i in range(n)]
for i in range(m):
  a,b=map(int,input().split())
  a-=1
  b-=1
  e[a]+=[b]
  e[b]+=[a]
if len(e[0])==0:
  print(*([0]*n),sep="\n")
  exit()
v=[0]*n
d=[0]*n
q=[0]
v[0]=1
for s in q:
  for t in e[s]:
    if v[t]==0:
      v[t]=1
      d[t]=d[s]+1
      q+=[t]
ae=[0]*(n+1)
ao=[0]*(n+1)
for i in range(n):
  if v[i]==0:
    continue
  if d[i]%2:
    ao[(d[i]+1)//2]+=1
  else:
    ae[d[i]//2]+=1
for i in range(1,n+1):
  ae[i]+=ae[i-1]
  ao[i]+=ao[i-1]
ans=[]
for i in range(1,n+1):
  ans+=[ao[i],ae[i]]
print(*ans[:n],sep="\n")
0