結果

問題 No.2888 Mamehinata
ユーザー detteiuudetteiuu
提出日時 2024-09-13 21:32:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 837 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 118,244 KB
最終ジャッジ日時 2024-09-13 21:33:14
合計ジャッジ時間 16,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,376 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 44 ms
53,504 KB
testcase_03 AC 47 ms
53,760 KB
testcase_04 WA -
testcase_05 AC 46 ms
54,272 KB
testcase_06 AC 46 ms
54,016 KB
testcase_07 AC 46 ms
53,760 KB
testcase_08 AC 46 ms
53,760 KB
testcase_09 AC 46 ms
53,632 KB
testcase_10 AC 45 ms
53,632 KB
testcase_11 WA -
testcase_12 AC 49 ms
54,016 KB
testcase_13 AC 171 ms
79,744 KB
testcase_14 AC 145 ms
88,704 KB
testcase_15 WA -
testcase_16 AC 387 ms
108,416 KB
testcase_17 WA -
testcase_18 AC 221 ms
84,096 KB
testcase_19 AC 456 ms
107,136 KB
testcase_20 AC 396 ms
101,760 KB
testcase_21 AC 385 ms
100,224 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 370 ms
110,720 KB
testcase_25 AC 311 ms
109,824 KB
testcase_26 AC 327 ms
109,568 KB
testcase_27 AC 198 ms
104,064 KB
testcase_28 AC 151 ms
81,408 KB
testcase_29 AC 227 ms
89,728 KB
testcase_30 AC 463 ms
111,104 KB
testcase_31 AC 425 ms
104,832 KB
testcase_32 AC 295 ms
96,384 KB
testcase_33 AC 376 ms
102,016 KB
testcase_34 AC 367 ms
98,432 KB
testcase_35 AC 304 ms
95,360 KB
testcase_36 AC 496 ms
113,536 KB
testcase_37 AC 512 ms
113,920 KB
testcase_38 AC 208 ms
86,272 KB
testcase_39 AC 416 ms
106,752 KB
testcase_40 AC 482 ms
107,520 KB
testcase_41 AC 163 ms
82,432 KB
testcase_42 AC 423 ms
103,296 KB
testcase_43 AC 320 ms
112,660 KB
testcase_44 AC 332 ms
113,764 KB
testcase_45 AC 373 ms
118,244 KB
testcase_46 AC 133 ms
81,536 KB
testcase_47 AC 338 ms
113,356 KB
testcase_48 AC 323 ms
102,500 KB
testcase_49 AC 113 ms
76,928 KB
testcase_50 AC 186 ms
85,120 KB
testcase_51 AC 85 ms
73,344 KB
testcase_52 AC 79 ms
70,272 KB
testcase_53 AC 102 ms
76,544 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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)

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