結果

問題 No.1451 集団登校
ユーザー H3PO4H3PO4
提出日時 2022-06-05 08:57:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 701 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 124,744 KB
最終ジャッジ日時 2024-09-21 04:04:19
合計ジャッジ時間 5,823 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 261 ms
124,744 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 186 ms
107,008 KB
testcase_11 AC 108 ms
107,136 KB
testcase_12 AC 187 ms
103,552 KB
testcase_13 AC 267 ms
113,536 KB
testcase_14 AC 290 ms
109,112 KB
testcase_15 AC 204 ms
98,328 KB
testcase_16 AC 244 ms
109,824 KB
testcase_17 AC 154 ms
77,824 KB
testcase_18 AC 168 ms
89,220 KB
testcase_19 AC 84 ms
93,644 KB
testcase_20 AC 293 ms
109,612 KB
testcase_21 AC 127 ms
76,800 KB
testcase_22 AC 138 ms
81,748 KB
testcase_23 AC 84 ms
75,904 KB
testcase_24 AC 172 ms
106,496 KB
testcase_25 AC 201 ms
97,808 KB
testcase_26 AC 253 ms
108,624 KB
testcase_27 AC 231 ms
93,124 KB
testcase_28 AC 155 ms
85,656 KB
testcase_29 AC 197 ms
97,052 KB
権限があれば一括ダウンロードができます

ソースコード

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 ra == rb:
        continue
    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] = set()
print(*ans, sep="\n")
0