結果

問題 No.2888 Mamehinata
ユーザー mkawa2mkawa2
提出日時 2024-09-13 21:36:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 448 ms / 2,000 ms
コード長 1,278 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 122,096 KB
最終ジャッジ日時 2024-09-13 21:37:10
合計ジャッジ時間 14,562 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 42 ms
54,144 KB
testcase_02 AC 43 ms
54,016 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 43 ms
54,144 KB
testcase_05 AC 43 ms
54,400 KB
testcase_06 AC 43 ms
54,144 KB
testcase_07 AC 43 ms
53,888 KB
testcase_08 AC 43 ms
54,272 KB
testcase_09 AC 44 ms
54,400 KB
testcase_10 AC 46 ms
54,144 KB
testcase_11 AC 46 ms
54,016 KB
testcase_12 AC 46 ms
53,760 KB
testcase_13 AC 147 ms
81,644 KB
testcase_14 AC 123 ms
84,088 KB
testcase_15 AC 278 ms
90,716 KB
testcase_16 AC 336 ms
96,780 KB
testcase_17 AC 122 ms
84,480 KB
testcase_18 AC 190 ms
84,196 KB
testcase_19 AC 386 ms
99,260 KB
testcase_20 AC 339 ms
95,092 KB
testcase_21 AC 343 ms
94,664 KB
testcase_22 AC 170 ms
88,320 KB
testcase_23 AC 185 ms
92,800 KB
testcase_24 AC 314 ms
97,408 KB
testcase_25 AC 248 ms
96,768 KB
testcase_26 AC 273 ms
96,128 KB
testcase_27 AC 162 ms
91,276 KB
testcase_28 AC 129 ms
80,256 KB
testcase_29 AC 214 ms
85,560 KB
testcase_30 AC 391 ms
98,048 KB
testcase_31 AC 369 ms
94,848 KB
testcase_32 AC 252 ms
89,600 KB
testcase_33 AC 309 ms
93,764 KB
testcase_34 AC 265 ms
91,136 KB
testcase_35 AC 271 ms
89,100 KB
testcase_36 AC 426 ms
100,096 KB
testcase_37 AC 438 ms
101,012 KB
testcase_38 AC 169 ms
83,696 KB
testcase_39 AC 367 ms
96,128 KB
testcase_40 AC 448 ms
99,968 KB
testcase_41 AC 133 ms
81,024 KB
testcase_42 AC 382 ms
96,640 KB
testcase_43 AC 258 ms
111,512 KB
testcase_44 AC 285 ms
116,516 KB
testcase_45 AC 311 ms
122,096 KB
testcase_46 AC 119 ms
80,996 KB
testcase_47 AC 289 ms
116,092 KB
testcase_48 AC 278 ms
103,200 KB
testcase_49 AC 85 ms
77,824 KB
testcase_50 AC 138 ms
89,600 KB
testcase_51 AC 62 ms
72,960 KB
testcase_52 AC 60 ms
67,968 KB
testcase_53 AC 74 ms
76,416 KB
testcase_54 AC 42 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

md = 10**9+7
# md = 998244353

from collections import deque

n,m=LI()
to=[[] for _ in range(n)]
for _ in range(m):
    u,v=LI1()
    to[u].append(v)
    to[v].append(u)

if len(to[0])==0:
    for _ in range(n):print(0)
    exit()

cc=[-1]*n
uu=[0]
cc[0]=1
c1=tot=1
for i in range(n):
    vv=[]
    for u in uu:
        for v in to[u]:
            if cc[v]==-1:
                cc[v]=cc[u]^1
                vv.append(v)
                c1+=cc[v]
                tot+=1
    uu=vv
    if i&1:
        print(c1)
    else:
        print(tot-c1)
0