結果

問題 No.1103 Directed Length Sum
ユーザー uni_pythonuni_python
提出日時 2020-07-06 21:53:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,153 ms / 3,000 ms
コード長 963 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 259,716 KB
最終ジャッジ日時 2024-09-24 18:29:16
合計ジャッジ時間 21,341 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
67,896 KB
testcase_01 AC 57 ms
67,532 KB
testcase_02 AC 1,043 ms
252,508 KB
testcase_03 AC 1,042 ms
259,716 KB
testcase_04 AC 1,277 ms
162,672 KB
testcase_05 AC 2,153 ms
241,360 KB
testcase_06 AC 849 ms
133,380 KB
testcase_07 AC 252 ms
93,844 KB
testcase_08 AC 351 ms
100,704 KB
testcase_09 AC 195 ms
87,864 KB
testcase_10 AC 481 ms
107,700 KB
testcase_11 AC 1,393 ms
173,244 KB
testcase_12 AC 873 ms
133,300 KB
testcase_13 AC 440 ms
107,568 KB
testcase_14 AC 171 ms
85,184 KB
testcase_15 AC 664 ms
120,880 KB
testcase_16 AC 1,578 ms
184,428 KB
testcase_17 AC 1,667 ms
189,184 KB
testcase_18 AC 450 ms
107,656 KB
testcase_19 AC 1,452 ms
174,008 KB
testcase_20 AC 222 ms
90,620 KB
testcase_21 AC 306 ms
98,768 KB
testcase_22 AC 1,207 ms
152,124 KB
testcase_23 AC 734 ms
123,636 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=10**6
    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
    
    import queue
    q=queue.Queue()
    LL=[]#帰り順
    
    root=0
    for i in range(N):
        if P[i]==-1:
            root=i
        
    q.put(root)
    # LL.append(root)

        
    D=[0]*N
    while not q.empty():
        v=q.get()
        for nv in to[v]:
            D[nv]=D[v]+1
            q.put(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