結果

問題 No.1451 集団登校
ユーザー H3PO4H3PO4
提出日時 2022-06-05 08:55:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 664 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,708 KB
実行使用メモリ 124,424 KB
最終ジャッジ日時 2024-09-21 04:04:13
合計ジャッジ時間 6,097 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 39 ms
52,128 KB
testcase_06 AC 44 ms
52,412 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 263 ms
124,424 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 184 ms
106,768 KB
testcase_11 AC 114 ms
106,880 KB
testcase_12 AC 188 ms
103,620 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 88 ms
93,392 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 172 ms
106,240 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
MOD = 10 ** 9 + 7
i2 = pow(2, MOD - 2, MOD)
ans = [1] * N
st = [{i} for i in range(N)]
root = list(range(N))
for _ in range(M):
    a, b = (int(x) - 1 for x in input().split())
    ra = root[a]
    rb = root[b]
    if len(st[ra]) == len(st[rb]):
        for x in st[ra]:
            ans[x] *= i2
            ans[x] %= MOD
        for x in st[rb]:
            ans[x] *= i2
            ans[x] %= MOD
            root[x] = ra
    else:
        if len(st[ra]) < len(st[rb]):
            ra, rb = rb, ra
        for x in st[rb]:
            ans[x] = 0
            root[x] = ra
    st[ra] |= st[rb]
    st[rb] = {}
print(*ans, sep="\n")
0