結果

問題 No.2638 Initial fare
ユーザー こめだわらこめだわら
提出日時 2024-02-19 21:36:16
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 576 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,988 KB
実行使用メモリ 517,180 KB
最終ジャッジ日時 2024-09-29 01:32:16
合計ジャッジ時間 14,281 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,788 KB
testcase_01 AC 34 ms
52,328 KB
testcase_02 AC 35 ms
53,328 KB
testcase_03 AC 37 ms
53,276 KB
testcase_04 AC 432 ms
101,196 KB
testcase_05 AC 442 ms
102,220 KB
testcase_06 AC 33 ms
53,344 KB
testcase_07 AC 413 ms
103,244 KB
testcase_08 AC 267 ms
104,584 KB
testcase_09 AC 326 ms
106,416 KB
testcase_10 AC 308 ms
106,296 KB
testcase_11 AC 33 ms
52,824 KB
testcase_12 AC 398 ms
103,264 KB
testcase_13 AC 265 ms
103,320 KB
testcase_14 AC 342 ms
106,900 KB
testcase_15 AC 316 ms
107,012 KB
testcase_16 AC 36 ms
54,368 KB
testcase_17 AC 393 ms
105,740 KB
testcase_18 AC 315 ms
105,368 KB
testcase_19 AC 708 ms
185,344 KB
testcase_20 AC 407 ms
116,084 KB
testcase_21 AC 1,183 ms
172,784 KB
testcase_22 AC 33 ms
53,616 KB
testcase_23 AC 1,224 ms
374,140 KB
testcase_24 AC 1,449 ms
385,264 KB
testcase_25 AC 34 ms
53,820 KB
testcase_26 AC 1,306 ms
229,004 KB
testcase_27 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(500000)

N=int(input())
edge=[[] for _ in range(N)]
for _ in range(N-1):
    a,b=map(int,input().split())
    a-=1
    b-=1
    edge[a].append(b)
    edge[b].append(a)

used=[0]*N
total=0
def dfs(i):
    global total
    used[i]=1
    dp=[0,0,0]
    c=[0,0,0]
    for np in edge[i]:
        if used[np]==1:
            continue
        d=dfs(np)
        total+=d[0]*c[0]+d[0]*c[1]+d[1]*c[0]
        for j in range(3):
            c[j]+=d[j]
    total+=c[0]+c[1]+c[2]
    dp[0]=1
    dp[1]=c[0]
    dp[2]=c[1]
    return dp

dfs(0)
print(total)
0