結果
問題 | No.1451 集団登校 |
ユーザー | 👑 rin204 |
提出日時 | 2022-04-15 16:15:51 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 369 ms / 2,000 ms |
コード長 | 795 bytes |
コンパイル時間 | 547 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 96,640 KB |
最終ジャッジ日時 | 2024-06-07 01:15:53 |
合計ジャッジ時間 | 6,561 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,224 KB |
testcase_01 | AC | 38 ms
52,096 KB |
testcase_02 | AC | 39 ms
52,096 KB |
testcase_03 | AC | 38 ms
51,840 KB |
testcase_04 | AC | 37 ms
52,096 KB |
testcase_05 | AC | 39 ms
51,712 KB |
testcase_06 | AC | 39 ms
51,840 KB |
testcase_07 | AC | 39 ms
51,840 KB |
testcase_08 | AC | 200 ms
96,640 KB |
testcase_09 | AC | 38 ms
51,712 KB |
testcase_10 | AC | 167 ms
90,496 KB |
testcase_11 | AC | 82 ms
88,192 KB |
testcase_12 | AC | 177 ms
89,472 KB |
testcase_13 | AC | 285 ms
92,692 KB |
testcase_14 | AC | 361 ms
90,624 KB |
testcase_15 | AC | 238 ms
85,248 KB |
testcase_16 | AC | 291 ms
90,624 KB |
testcase_17 | AC | 170 ms
77,312 KB |
testcase_18 | AC | 196 ms
81,792 KB |
testcase_19 | AC | 70 ms
83,328 KB |
testcase_20 | AC | 369 ms
90,752 KB |
testcase_21 | AC | 121 ms
76,672 KB |
testcase_22 | AC | 188 ms
78,592 KB |
testcase_23 | AC | 80 ms
76,032 KB |
testcase_24 | AC | 159 ms
89,788 KB |
testcase_25 | AC | 271 ms
84,736 KB |
testcase_26 | AC | 294 ms
90,916 KB |
testcase_27 | AC | 300 ms
83,456 KB |
testcase_28 | AC | 227 ms
80,288 KB |
testcase_29 | AC | 279 ms
84,352 KB |
ソースコード
MOD = 10 ** 9 + 7 n, m = map(int, input().split()) leader = [[i] for i in range(n)] parent = [-1] * n ans = [1] * n inv = pow(2, MOD - 2, MOD) def find(x): if parent[x] < 0: return x parent[x] = find(parent[x]) return parent[x] def unite(x, y): x = find(x) y = find(y) if x == y: return if parent[x] > parent[y]: x, y = y, x if parent[x] == parent[y]: for i in leader[y]: leader[x].append(i) for i in leader[x]: ans[i] *= inv ans[i] %= MOD else: for i in leader[y]: ans[i] = 0 parent[x] += parent[y] parent[y] = x leader[y] = [] for _ in range(m): a, b = map(int, input().split()) unite(a - 1, b - 1) print(*ans, sep="\n")