結果

問題 No.1333 Squared Sum
ユーザー mkawa2mkawa2
提出日時 2023-08-11 09:49:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 522 ms / 2,000 ms
コード長 1,701 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 150,032 KB
最終ジャッジ日時 2024-11-18 01:08:36
合計ジャッジ時間 16,009 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,736 KB
testcase_01 AC 33 ms
52,608 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 460 ms
124,964 KB
testcase_04 AC 436 ms
124,800 KB
testcase_05 AC 444 ms
126,620 KB
testcase_06 AC 470 ms
124,800 KB
testcase_07 AC 438 ms
126,336 KB
testcase_08 AC 477 ms
136,808 KB
testcase_09 AC 416 ms
124,948 KB
testcase_10 AC 412 ms
125,012 KB
testcase_11 AC 448 ms
124,988 KB
testcase_12 AC 462 ms
124,880 KB
testcase_13 AC 367 ms
124,172 KB
testcase_14 AC 522 ms
138,264 KB
testcase_15 AC 484 ms
138,276 KB
testcase_16 AC 32 ms
52,480 KB
testcase_17 AC 32 ms
52,352 KB
testcase_18 AC 32 ms
52,992 KB
testcase_19 AC 33 ms
52,352 KB
testcase_20 AC 33 ms
52,608 KB
testcase_21 AC 31 ms
52,480 KB
testcase_22 AC 31 ms
52,352 KB
testcase_23 AC 31 ms
52,480 KB
testcase_24 AC 31 ms
52,096 KB
testcase_25 AC 30 ms
52,608 KB
testcase_26 AC 460 ms
137,396 KB
testcase_27 AC 464 ms
137,260 KB
testcase_28 AC 461 ms
137,388 KB
testcase_29 AC 347 ms
125,840 KB
testcase_30 AC 180 ms
98,176 KB
testcase_31 AC 119 ms
87,680 KB
testcase_32 AC 243 ms
104,456 KB
testcase_33 AC 213 ms
109,752 KB
testcase_34 AC 348 ms
125,584 KB
testcase_35 AC 248 ms
106,496 KB
testcase_36 AC 161 ms
95,400 KB
testcase_37 AC 169 ms
96,100 KB
testcase_38 AC 196 ms
96,916 KB
testcase_39 AC 316 ms
108,660 KB
testcase_40 AC 385 ms
145,952 KB
testcase_41 AC 381 ms
147,268 KB
testcase_42 AC 360 ms
146,456 KB
testcase_43 AC 372 ms
150,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(1000005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = -1-(-1 << 63)
md = 10**9+7
# md = 998244353

n = II()
to = [[] for _ in range(n)]
for _ in range(n-1):
    u, v, w = LI1()
    w += 1
    to[u].append((v, w))
    to[v].append((u, w))

def dfs(root=0):
    uu, stack = [], [root]
    while stack:
        u = stack.pop()
        uu.append(u)
        for v, w in to[u]:
            if v == parent[u]: continue
            ww[v] = w
            parent[v] = u
            depth[v] = depth[u]+1
            stack.append(v)
    return uu

parent, depth, ww = [-1]*n, [0]*n, [0]*n
uu = dfs()

dp = [[1, 0, 0] for _ in range(n)]
ans = 0
for u in uu[:0:-1]:
    w = ww[u]
    w2 = w*w%md
    v = parent[u]
    dpu = dp[u]
    dpv = dp[v]

    ans += dpu[2]*dpv[0]%md+dpv[2]*dpu[0]%md+w2*dpu[0]%md*dpv[0]%md+2*dpu[1]*dpv[1]%md+2*w*(
                dpu[1]*dpv[0]%md+dpv[1]*dpu[0]%md)%md
    ans %= md

    dpv[0] += dpu[0]
    dpv[1] += dpu[1]+w*dpu[0]%md
    dpv[2] += dpu[2]+2*w*dpu[1]%md+pow(w, 2, md)*dpu[0]%md
    dpv[1] %= md
    dpv[2] %= md

print(ans)
0