結果

問題 No.1103 Directed Length Sum
ユーザー neterukunneterukun
提出日時 2020-07-03 22:47:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,420 ms / 3,000 ms
コード長 640 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 396,776 KB
最終ジャッジ日時 2024-09-17 04:28:23
合計ジャッジ時間 20,095 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,128 KB
testcase_01 AC 37 ms
53,120 KB
testcase_02 AC 1,187 ms
313,756 KB
testcase_03 AC 1,221 ms
396,776 KB
testcase_04 AC 1,155 ms
218,888 KB
testcase_05 AC 2,420 ms
349,608 KB
testcase_06 AC 782 ms
174,512 KB
testcase_07 AC 218 ms
99,332 KB
testcase_08 AC 271 ms
100,032 KB
testcase_09 AC 172 ms
90,660 KB
testcase_10 AC 355 ms
116,640 KB
testcase_11 AC 1,296 ms
233,272 KB
testcase_12 AC 744 ms
169,436 KB
testcase_13 AC 413 ms
127,512 KB
testcase_14 AC 140 ms
84,048 KB
testcase_15 AC 551 ms
143,288 KB
testcase_16 AC 1,541 ms
267,844 KB
testcase_17 AC 1,551 ms
271,412 KB
testcase_18 AC 360 ms
117,688 KB
testcase_19 AC 1,324 ms
240,480 KB
testcase_20 AC 164 ms
86,508 KB
testcase_21 AC 288 ms
108,776 KB
testcase_22 AC 1,122 ms
214,456 KB
testcase_23 AC 587 ms
144,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
info = [list(map(int, input().split())) for i in range(n - 1)]
MOD = 10 ** 9 + 7


tree = [[] for i in range(n)]
for a, b in info:
    a -= 1
    b -= 1
    tree[b].append(a)

cnt_ = [0] * n
for v in range(n):
    for nxt_v in tree[v]:
        cnt_[nxt_v] += 1

dp_cnt = [1] * n
dp_ptn = [0] * n
stack = [i for i in range(n) if cnt_[i] == 0]
while stack:
    v = stack.pop()
    for nxt_v in tree[v]:
        dp_cnt[nxt_v] += dp_cnt[v]
        dp_ptn[nxt_v] += dp_ptn[v] + dp_cnt[v]
        dp_ptn[nxt_v] %= MOD
        cnt_[nxt_v] -= 1
        if cnt_[nxt_v] == 0:
            stack.append(nxt_v)

print(sum(dp_ptn) % MOD)
0