結果

問題 No.1103 Directed Length Sum
ユーザー mkawa2mkawa2
提出日時 2020-07-10 00:34:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,174 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 277,712 KB
最終ジャッジ日時 2024-10-08 19:57:09
合計ジャッジ時間 14,417 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 WA -
testcase_03 AC 515 ms
277,712 KB
testcase_04 AC 807 ms
133,120 KB
testcase_05 AC 1,491 ms
172,288 KB
testcase_06 AC 562 ms
113,280 KB
testcase_07 AC 139 ms
84,992 KB
testcase_08 AC 185 ms
89,728 KB
testcase_09 AC 122 ms
81,792 KB
testcase_10 AC 258 ms
94,848 KB
testcase_11 AC 925 ms
138,240 KB
testcase_12 AC 523 ms
113,536 KB
testcase_13 AC 281 ms
95,360 KB
testcase_14 AC 107 ms
80,000 KB
testcase_15 AC 435 ms
105,216 KB
testcase_16 AC 1,017 ms
145,792 KB
testcase_17 AC 1,094 ms
148,480 KB
testcase_18 AC 264 ms
94,720 KB
testcase_19 AC 891 ms
139,776 KB
testcase_20 AC 120 ms
82,944 KB
testcase_21 AC 178 ms
88,576 KB
testcase_22 AC 763 ms
128,256 KB
testcase_23 AC 476 ms
107,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)

def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def SI(): return sys.stdin.readline()[:-1]
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
int1 = lambda x: int(x) - 1
def MI1(): return map(int1, sys.stdin.readline().split())
def LI1(): return list(map(int1, sys.stdin.readline().split()))
p2D = lambda x: print(*x, sep="\n")
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def dfs(root):
    stack=[(root,1)]
    while stack:
        u,d=stack.pop()
        if dp[u]==-1:
            dp[u]=0
            stack.append((u,d))
            for v in to[u]:
                stack.append((v,d+1))
        else:
            for v in to[u]:
                sz[u]+=sz[v]
                dp[u]+=dp[v]+d*sz[v]

n=II()
to=[[] for _ in range(n)]
isroot=[True]*n
for _ in range(n-1):
    u,v=MI1()
    to[u].append(v)
    isroot[v]=False
sz=[1]*n
dp=[-1]*n
for root in range(n):
    if isroot[root]:
        dfs(root)
        print(dp[root])
        break
0