結果
問題 | No.1124 Earthquake Safety |
ユーザー | QCFium |
提出日時 | 2020-07-03 14:53:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,114 bytes |
コンパイル時間 | 918 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 208,500 KB |
最終ジャッジ日時 | 2024-09-16 17:10:53 |
合計ジャッジ時間 | 77,147 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
153,080 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 29 ms
10,880 KB |
testcase_05 | AC | 31 ms
10,880 KB |
testcase_06 | AC | 38 ms
10,880 KB |
testcase_07 | AC | 116 ms
12,416 KB |
testcase_08 | AC | 976 ms
29,568 KB |
testcase_09 | AC | 2,997 ms
67,328 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 31 ms
10,752 KB |
testcase_12 | AC | 30 ms
10,752 KB |
testcase_13 | AC | 31 ms
10,752 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
ソースコード
import sys sys.setrecursionlimit(400000) MOD = 1000000007 inv2 = 500000004 def dfs0(i, prev) : subtree_dsum[i] = inv2 for j in hen[i] : if j != prev : dfs0(j, i) subtree_dsum[i] = (subtree_dsum[i] + subtree_dsum[j] * inv2) % MOD; res = 0 def dfs1(i, prev, prev_dsum) : global res all = [] if prev != -1 : all.append(prev_dsum) for j in hen[i] : if j != prev : all.append(subtree_dsum[j]) sum1 = sum(all) % MOD sum2 = sum(map(lambda i : i * i, all)) % MOD sum3 = sum(map(lambda i : i * i * i, all)) % MOD res = (res \ + sum1 * sum1 * sum1 - sum2 * sum1 * 3 + sum3 * 2 \ + (sum1 * sum1 - sum2) * 3 \ + sum1 * 3 + 1) % MOD if res < 0 : res += MOD for j in hen[i] : if j != prev : next = (sum1 - subtree_dsum[j] + 1) * inv2 % MOD if next < 0 : next += MOD dfs1(j, i, next); n = int(input()) hen = [[] for i in range(n)] for i in range(n - 1) : a, b = map(int, input().split()) a -= 1 b -= 1 hen[a].append(b) hen[b].append(a) subtree_dsum = [0 for i in range(n)] dfs0(0, -1) dfs1(0, -1, 0) for i in range(n - 1) : res *= 2 if res >= MOD : res -= MOD print(res)