結果

問題 No.2638 Initial fare
ユーザー tassei903tassei903
提出日時 2024-02-19 21:39:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,219 ms / 2,000 ms
コード長 1,080 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 182,328 KB
最終ジャッジ日時 2024-10-02 13:14:57
合計ジャッジ時間 19,099 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,532 KB
testcase_01 AC 40 ms
52,804 KB
testcase_02 AC 37 ms
53,656 KB
testcase_03 AC 41 ms
59,840 KB
testcase_04 AC 958 ms
144,192 KB
testcase_05 AC 1,031 ms
152,020 KB
testcase_06 AC 36 ms
52,768 KB
testcase_07 AC 816 ms
165,032 KB
testcase_08 AC 518 ms
171,568 KB
testcase_09 AC 596 ms
181,984 KB
testcase_10 AC 581 ms
182,328 KB
testcase_11 AC 38 ms
52,828 KB
testcase_12 AC 830 ms
159,060 KB
testcase_13 AC 543 ms
159,556 KB
testcase_14 AC 671 ms
178,088 KB
testcase_15 AC 616 ms
179,696 KB
testcase_16 AC 46 ms
59,136 KB
testcase_17 AC 803 ms
155,904 KB
testcase_18 AC 606 ms
158,484 KB
testcase_19 AC 966 ms
152,960 KB
testcase_20 AC 929 ms
154,276 KB
testcase_21 AC 1,011 ms
150,292 KB
testcase_22 AC 44 ms
58,752 KB
testcase_23 AC 1,128 ms
156,032 KB
testcase_24 AC 1,210 ms
150,656 KB
testcase_25 AC 45 ms
58,496 KB
testcase_26 AC 1,151 ms
154,112 KB
testcase_27 AC 1,219 ms
149,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
#######################################################################
n = ni()
g = [[] for i in range(n)]
for i in range(n-1):
    a,b = na()
    g[a-1].append(b-1)
    g[b-1].append(a-1)

dp = [[1,0,0,0] for i in range(n)]
seen = [0]*n
q = [0]
et = []
seen[0] = 1
p = [-1] * n
chi = [[] for i in range(n)]
while q:
    x = q.pop()
    et.append(x)
    for y in g[x]:
        if seen[y]:
            continue
        seen[y] = 1
        p[y] = x
        chi[x].append(y)
        q.append(y)

for x in et[::-1]:
    for y in chi[x]:
        dp[x][1] += dp[y][0]
        dp[x][2] += dp[y][1]
        dp[x][3] += dp[y][2]

ans = 0
for i in range(n):
    x = i
    t = 3
    s = sum(dp[x])
    while p[x] != -1 and t:
        y = x
        x = p[x]
        s += sum(dp[x][:t]) - sum(dp[y][:t-1])
        t -= 1
    ans += s
    #print(s)
print((ans-n)//2)
0