結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー marroncastlemarroncastle
提出日時 2021-03-15 17:26:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 1,232 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 96,880 KB
最終ジャッジ日時 2024-11-07 04:47:17
合計ジャッジ時間 7,900 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,888 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 265 ms
96,640 KB
testcase_04 AC 232 ms
96,512 KB
testcase_05 AC 236 ms
96,512 KB
testcase_06 AC 240 ms
96,384 KB
testcase_07 AC 246 ms
96,384 KB
testcase_08 AC 174 ms
89,344 KB
testcase_09 AC 121 ms
81,408 KB
testcase_10 AC 121 ms
81,664 KB
testcase_11 AC 108 ms
79,232 KB
testcase_12 AC 160 ms
86,784 KB
testcase_13 AC 173 ms
88,448 KB
testcase_14 AC 181 ms
89,216 KB
testcase_15 AC 154 ms
84,608 KB
testcase_16 AC 96 ms
77,696 KB
testcase_17 AC 97 ms
77,312 KB
testcase_18 AC 228 ms
93,056 KB
testcase_19 AC 105 ms
78,976 KB
testcase_20 AC 82 ms
71,680 KB
testcase_21 AC 164 ms
85,120 KB
testcase_22 AC 138 ms
84,224 KB
testcase_23 AC 83 ms
73,216 KB
testcase_24 AC 84 ms
72,832 KB
testcase_25 AC 83 ms
72,320 KB
testcase_26 AC 82 ms
72,448 KB
testcase_27 AC 55 ms
61,440 KB
testcase_28 AC 70 ms
67,840 KB
testcase_29 AC 87 ms
74,368 KB
testcase_30 AC 89 ms
74,240 KB
testcase_31 AC 78 ms
70,784 KB
testcase_32 AC 84 ms
72,704 KB
testcase_33 AC 101 ms
80,128 KB
testcase_34 AC 210 ms
95,872 KB
testcase_35 AC 122 ms
83,200 KB
testcase_36 AC 90 ms
78,208 KB
testcase_37 AC 174 ms
96,880 KB
testcase_38 AC 166 ms
95,544 KB
testcase_39 AC 45 ms
53,632 KB
testcase_40 AC 45 ms
53,760 KB
testcase_41 AC 46 ms
54,016 KB
testcase_42 AC 46 ms
54,016 KB
testcase_43 AC 45 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import deque
class Tree:
  def __init__(self, N):
    self.V = N
    self.edge = [[] for _ in range(N)]
    self.order = []
  
  def add_edges(self, ind=1, bi=True):
    for i in range(self.V-1):
      a,b = map(int, input().split())
      a -= ind; b -= ind
      self.edge[a].append(b)
      if bi: self.edge[b].append(a)

  def add_edge(self, a, b, bi=True):
    self.edge[a].append(b)
    if bi: self.edge[b].append(a)

  def dp(self, start):
    global ans
    stack = deque([start])
    self.parent = [self.V]*self.V; self.parent[start] = -1
    self.order.append(start)
    #記録したい値の配列を定義
    self.dp = [1]*self.V
    while stack:
      v = stack.pop()
      for u in self.edge[v]:
        if u==self.parent[v]: continue
        self.parent[u]=v
        stack.append(u); self.order.append(u)
    for v in self.order[::-1]:
      cum = 0
      for u in self.edge[v]:
        if u==self.parent[v]: continue
        ans += (self.dp[u]+1) * (N-self.dp[u])
        cum += self.dp[u]
        self.dp[v] += self.dp[u] #帰りがけ処理
      ans += (cum+1) * (N-cum)

N = int(input())
G = Tree(N)
G.add_edges(ind=1, bi=True)
ans = 0
G.dp(0)
print(ans)
0