結果

問題 No.2888 Mamehinata
ユーザー detteiuudetteiuu
提出日時 2024-09-13 21:38:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 908 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 118,276 KB
最終ジャッジ日時 2024-09-13 21:38:54
合計ジャッジ時間 16,301 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,248 KB
testcase_01 AC 42 ms
54,144 KB
testcase_02 AC 41 ms
53,376 KB
testcase_03 AC 43 ms
53,760 KB
testcase_04 AC 44 ms
54,016 KB
testcase_05 AC 44 ms
54,016 KB
testcase_06 AC 44 ms
54,016 KB
testcase_07 AC 43 ms
53,632 KB
testcase_08 AC 43 ms
54,272 KB
testcase_09 AC 44 ms
53,888 KB
testcase_10 AC 42 ms
53,760 KB
testcase_11 AC 43 ms
54,144 KB
testcase_12 AC 45 ms
54,272 KB
testcase_13 AC 178 ms
79,488 KB
testcase_14 AC 136 ms
89,152 KB
testcase_15 AC 299 ms
90,240 KB
testcase_16 AC 384 ms
108,288 KB
testcase_17 AC 134 ms
84,736 KB
testcase_18 AC 233 ms
84,480 KB
testcase_19 AC 435 ms
107,136 KB
testcase_20 AC 385 ms
101,920 KB
testcase_21 AC 397 ms
100,340 KB
testcase_22 AC 163 ms
88,320 KB
testcase_23 AC 203 ms
92,288 KB
testcase_24 AC 369 ms
110,936 KB
testcase_25 AC 301 ms
109,440 KB
testcase_26 AC 320 ms
109,440 KB
testcase_27 AC 190 ms
104,576 KB
testcase_28 AC 154 ms
81,152 KB
testcase_29 AC 241 ms
89,856 KB
testcase_30 AC 449 ms
110,720 KB
testcase_31 AC 370 ms
104,576 KB
testcase_32 AC 283 ms
96,256 KB
testcase_33 AC 385 ms
102,656 KB
testcase_34 AC 335 ms
98,560 KB
testcase_35 AC 275 ms
95,360 KB
testcase_36 AC 535 ms
113,664 KB
testcase_37 AC 524 ms
113,664 KB
testcase_38 AC 203 ms
86,528 KB
testcase_39 AC 425 ms
106,496 KB
testcase_40 AC 492 ms
107,776 KB
testcase_41 AC 166 ms
82,048 KB
testcase_42 AC 452 ms
103,552 KB
testcase_43 AC 323 ms
112,404 KB
testcase_44 AC 342 ms
114,384 KB
testcase_45 AC 383 ms
118,276 KB
testcase_46 AC 135 ms
81,664 KB
testcase_47 AC 338 ms
113,352 KB
testcase_48 AC 329 ms
102,248 KB
testcase_49 AC 111 ms
77,184 KB
testcase_50 AC 180 ms
85,376 KB
testcase_51 AC 86 ms
73,472 KB
testcase_52 AC 81 ms
70,400 KB
testcase_53 AC 99 ms
76,672 KB
testcase_54 AC 44 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, M = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    u, v = map(int, input().split())
    G[u-1].append(v-1)
    G[v-1].append(u-1)

if len(G[0]) == 0:
    for _ in range(N):
        print(0)
    exit()

even, odd = 1, 0
visited = [-1]*N
que = deque()
que.append(0)
visited[0] = 0
ans = []
pre = 0
n = 0
while que:
    n = que.popleft()
    if pre != visited[n]:
        if pre%2 == 0:
            ans.append(odd)
        else:
            ans.append(even)
    pre = visited[n]
    for v in G[n]:
        if visited[v] == -1:
            visited[v] = visited[n]+1
            que.append(v)
            if visited[v]%2 == 0:
                even += 1
            else:
                odd += 1

now = visited[n]+1
while now <= N:
    if now%2 == 0:
        ans.append(even)
    else:
        ans.append(odd)
    now += 1

for a in ans:
    print(a)
0