結果

問題 No.1103 Directed Length Sum
ユーザー qibqib
提出日時 2023-04-30 17:19:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 674 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 314,620 KB
最終ジャッジ日時 2024-11-19 07:43:53
合計ジャッジ時間 17,728 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 WA -
testcase_03 AC 808 ms
314,620 KB
testcase_04 AC 1,081 ms
143,176 KB
testcase_05 AC 2,038 ms
196,248 KB
testcase_06 AC 719 ms
123,476 KB
testcase_07 AC 168 ms
86,272 KB
testcase_08 AC 243 ms
92,672 KB
testcase_09 AC 128 ms
82,328 KB
testcase_10 AC 344 ms
100,352 KB
testcase_11 AC 1,226 ms
152,616 KB
testcase_12 AC 696 ms
123,520 KB
testcase_13 AC 337 ms
98,888 KB
testcase_14 AC 118 ms
81,280 KB
testcase_15 AC 533 ms
110,848 KB
testcase_16 AC 1,353 ms
157,440 KB
testcase_17 AC 1,489 ms
169,728 KB
testcase_18 AC 354 ms
100,352 KB
testcase_19 AC 1,272 ms
158,464 KB
testcase_20 AC 147 ms
84,952 KB
testcase_21 AC 219 ms
90,112 KB
testcase_22 AC 1,036 ms
144,828 KB
testcase_23 AC 581 ms
115,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n = int(input())
g = [[] for _ in range(n)]
par = [None for _ in range(n)]
for _ in range(n - 1):
  a, b = map(int, input().split())
  a -= 1
  b -= 1
  g[a].append(b)
  par[b] = a

src = None
for v in range(n):
  if par[v] is None:
    src = v
    break

dp = [0 for _ in range(n)]
depth = [None for _ in range(n)]
depth[src] = 0
st = [~ src, src]
ans = 0
while len(st) > 0:
  cur = st.pop()
  if cur >= 0:
    for nxt in g[cur]:
      depth[nxt] = depth[cur] + 1
      st.append(~ nxt)
      st.append(nxt)
  else:
    dp[~ cur] += 1
    if not par[~ cur] is None:
      dp[par[~ cur]] += dp[~ cur]
    ans = (ans + dp[~ cur] * depth[~ cur])

print(ans)
0