結果

問題 No.1103 Directed Length Sum
ユーザー qibqib
提出日時 2023-04-30 17:15:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,786 ms / 3,000 ms
コード長 723 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 305,340 KB
最終ジャッジ日時 2024-11-19 07:41:30
合計ジャッジ時間 17,655 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,208 KB
testcase_01 AC 38 ms
53,284 KB
testcase_02 AC 910 ms
282,972 KB
testcase_03 AC 726 ms
305,340 KB
testcase_04 AC 949 ms
145,076 KB
testcase_05 AC 1,786 ms
199,980 KB
testcase_06 AC 630 ms
124,832 KB
testcase_07 AC 154 ms
85,596 KB
testcase_08 AC 223 ms
91,612 KB
testcase_09 AC 125 ms
82,400 KB
testcase_10 AC 318 ms
101,080 KB
testcase_11 AC 1,066 ms
154,564 KB
testcase_12 AC 611 ms
125,604 KB
testcase_13 AC 320 ms
98,728 KB
testcase_14 AC 109 ms
81,052 KB
testcase_15 AC 456 ms
108,848 KB
testcase_16 AC 1,153 ms
158,284 KB
testcase_17 AC 1,292 ms
174,088 KB
testcase_18 AC 323 ms
101,036 KB
testcase_19 AC 1,142 ms
161,856 KB
testcase_20 AC 136 ms
84,044 KB
testcase_21 AC 198 ms
89,508 KB
testcase_22 AC 911 ms
148,156 KB
testcase_23 AC 545 ms
117,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n = int(input())

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

src = None
for v in range(n):
  if deg[v] == 0:
    src = v
    break

dist = [None for _ in range(n)]
dist[src] = 0
par = [None for _ in range(n)]
dp = [0 for _ in range(n)]
ans = 0
st = [~ src, src]
while len(st) > 0:
  cur = st.pop()
  if cur >= 0:
    for nxt in g[cur]:
      dist[nxt] = dist[cur] + 1
      par[nxt] = cur
      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] * dist[~ cur]) % MOD

print(ans)
0