結果

問題 No.1103 Directed Length Sum
ユーザー uni_pythonuni_python
提出日時 2020-07-06 21:58:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,384 ms / 3,000 ms
コード長 903 bytes
コンパイル時間 1,072 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 263,472 KB
最終ジャッジ日時 2024-09-24 18:29:43
合計ジャッジ時間 13,438 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,860 KB
testcase_01 AC 37 ms
52,448 KB
testcase_02 AC 576 ms
258,836 KB
testcase_03 AC 457 ms
263,472 KB
testcase_04 AC 776 ms
158,876 KB
testcase_05 AC 1,384 ms
214,388 KB
testcase_06 AC 506 ms
137,476 KB
testcase_07 AC 127 ms
90,356 KB
testcase_08 AC 189 ms
99,200 KB
testcase_09 AC 99 ms
84,248 KB
testcase_10 AC 259 ms
101,820 KB
testcase_11 AC 855 ms
171,948 KB
testcase_12 AC 508 ms
138,484 KB
testcase_13 AC 253 ms
104,288 KB
testcase_14 AC 91 ms
82,360 KB
testcase_15 AC 386 ms
127,536 KB
testcase_16 AC 935 ms
180,396 KB
testcase_17 AC 995 ms
177,036 KB
testcase_18 AC 256 ms
107,816 KB
testcase_19 AC 878 ms
171,436 KB
testcase_20 AC 118 ms
87,208 KB
testcase_21 AC 176 ms
96,972 KB
testcase_22 AC 718 ms
152,828 KB
testcase_23 AC 427 ms
131,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N=I()
    to=[[]for _ in range(N)]
    P=[-1]*N
    for i in range(N-1):
        a,b=MI()
        a-=1
        b-=1
        to[a].append(b)
        P[b]=a
    
    L=[]
    LL=[]#帰り順
    
    root=0
    for i in range(N):
        if P[i]==-1:
            root=i
        
    L.append(root)

        
    D=[0]*N
    while L:
        v=L.pop()
        for nv in to[v]:
            D[nv]=D[v]+1
            L.append(nv)
            LL.append(nv)
            
    ch=[0]*N#子を根とする木のサイズ
            
    for v in LL[::-1]:
        p=P[v]
        ch[p]+=ch[v]+1
                
    ans=0
    
    for i in range(N):
        ans=(ans+(D[i])*(ch[i]+1))%mod
    print(ans)
    


    


main()
0