結果

問題 No.1451 集団登校
ユーザー qibqib
提出日時 2023-01-27 16:36:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 677 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 192,596 KB
最終ジャッジ日時 2024-06-28 02:29:10
合計ジャッジ時間 6,385 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
61,172 KB
testcase_01 WA -
testcase_02 AC 38 ms
52,892 KB
testcase_03 AC 39 ms
52,188 KB
testcase_04 WA -
testcase_05 AC 40 ms
52,136 KB
testcase_06 WA -
testcase_07 AC 39 ms
52,616 KB
testcase_08 AC 180 ms
93,284 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 WA -
testcase_11 AC 86 ms
87,908 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n, m = map(int, input().split())

inv2 = pow(2, MOD - 2, MOD)

ans = [1 for _ in range(n)]
grp = [[i] for i in range(n)]
par = [i for i in range(n)]
for _ in range(m):
  a, b = map(int, input().split())
  a = par[a - 1]
  b = par[b - 1]
  if a != b:
    la = len(grp[a])
    lb = len(grp[b])
    if la > lb:
      la, lb = lb, la

    if la == lb:
      while len(grp[a]) > 0:
        v = grp[a].pop()
        par[v] = b
        grp[b].append(v)

      for v in grp[b]:
        ans[v] = (ans[v] * inv2) % MOD
    else:
      while len(grp[a]) > 0:
        v = grp[a].pop()
        par[v] = b
        grp[b].append(v)
        ans[v] = 0

print(*ans, sep="\n")
0