結果

問題 No.1103 Directed Length Sum
ユーザー lloyzlloyz
提出日時 2023-05-17 00:12:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,516 ms / 3,000 ms
コード長 826 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 379,240 KB
最終ジャッジ日時 2024-05-08 16:27:12
合計ジャッジ時間 21,309 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,016 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 1,050 ms
349,832 KB
testcase_03 AC 856 ms
295,228 KB
testcase_04 AC 1,345 ms
268,484 KB
testcase_05 AC 2,516 ms
379,240 KB
testcase_06 AC 840 ms
194,604 KB
testcase_07 AC 208 ms
97,440 KB
testcase_08 AC 300 ms
110,792 KB
testcase_09 AC 147 ms
90,624 KB
testcase_10 AC 395 ms
124,316 KB
testcase_11 AC 1,489 ms
301,260 KB
testcase_12 AC 843 ms
190,084 KB
testcase_13 AC 408 ms
127,424 KB
testcase_14 AC 129 ms
87,296 KB
testcase_15 AC 669 ms
162,232 KB
testcase_16 AC 1,737 ms
316,556 KB
testcase_17 AC 1,759 ms
285,840 KB
testcase_18 AC 403 ms
123,768 KB
testcase_19 AC 1,499 ms
300,916 KB
testcase_20 AC 170 ms
92,916 KB
testcase_21 AC 260 ms
106,044 KB
testcase_22 AC 1,136 ms
242,352 KB
testcase_23 AC 671 ms
168,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque, defaultdict
import sys
input = sys.stdin.readline

def main():
    n = int(input())
    INcnt = defaultdict(int)
    OUTs = defaultdict(list)
    for _ in range(n - 1):
        a, b = map(int, input().split())
        a -= 1
        b -= 1
        INcnt[b] += 1
        OUTs[a].append(b)

    C = [0 for _ in range(n)]
    Que = deque([i for i in range(n) if INcnt[i] == 0])
    while len(Que) != 0:
        v = Que.popleft()
        for v2 in OUTs[v]:
            C[v2] = C[v] + 1
            INcnt[v2] -= 1
            if INcnt[v2] == 0:
                Que.append(v2)
    mod = 10**9 + 7
    inv2 = pow(2, mod - 2, mod)
    ans = 0
    for i in range(n):
        c = C[i]
        ans += c * (c + 1) % mod * inv2 % mod
        ans %= mod
    print(ans)

if __name__ == '__main__':
    main()

0