結果

問題 No.1103 Directed Length Sum
ユーザー stngstng
提出日時 2022-09-03 17:43:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 739 bytes
コンパイル時間 623 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 325,336 KB
最終ジャッジ日時 2024-11-17 08:14:19
合計ジャッジ時間 59,290 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,572 KB
testcase_01 AC 30 ms
170,728 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 684 ms
241,384 KB
testcase_08 AC 1,086 ms
68,728 KB
testcase_09 AC 426 ms
198,520 KB
testcase_10 AC 1,571 ms
97,376 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,601 ms
272,156 KB
testcase_14 AC 318 ms
31,420 KB
testcase_15 AC 2,444 ms
118,528 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,548 ms
90,356 KB
testcase_19 TLE -
testcase_20 AC 519 ms
36,040 KB
testcase_21 AC 1,007 ms
58,424 KB
testcase_22 TLE -
testcase_23 AC 2,632 ms
325,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
from functools import lru_cache


n = int(input())
li = [0]*n
ab = [[] for i in range(n)]
for i in range(n-1):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    ab[a].append(b)
    li[b] = 1

for i in range(n):
    if li[i] == 0:
        idx = i
        break

num = [0]*n

@lru_cache(maxsize=n+1)

def dfs(v):
    if num[v] != 0:
        return num[v]
    for i in range(len(ab[v])):
        num[v] += dfs(ab[v][i])
    num[v] += 1
    return num[v]

dfs(idx)

dp = [-1]*n

@lru_cache(maxsize=n+1)
def dfs2(v):
    if dp[v] != -1:
        return dp[v]
    for i in range(len(ab[v])):
        dp[v] += dfs2(ab[v][i])+num[ab[v][i]]
    dp[v] += 1
    return dp[v]

dfs2(idx)
print(sum(dp))
0