結果

問題 No.2532 Want Play More
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-11-04 11:52:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 721 ms / 2,000 ms
コード長 998 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 144,344 KB
最終ジャッジ日時 2024-09-25 21:58:20
合計ジャッジ時間 10,354 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 655 ms
117,376 KB
testcase_02 AC 721 ms
117,248 KB
testcase_03 AC 637 ms
116,608 KB
testcase_04 AC 720 ms
116,608 KB
testcase_05 AC 617 ms
113,536 KB
testcase_06 AC 302 ms
116,736 KB
testcase_07 AC 114 ms
76,672 KB
testcase_08 AC 125 ms
77,696 KB
testcase_09 AC 122 ms
77,656 KB
testcase_10 AC 330 ms
95,360 KB
testcase_11 AC 303 ms
94,244 KB
testcase_12 AC 570 ms
107,136 KB
testcase_13 AC 394 ms
96,188 KB
testcase_14 AC 192 ms
83,968 KB
testcase_15 AC 654 ms
116,992 KB
testcase_16 AC 575 ms
110,976 KB
testcase_17 AC 120 ms
77,500 KB
testcase_18 AC 427 ms
102,624 KB
testcase_19 AC 613 ms
106,640 KB
testcase_20 AC 40 ms
52,352 KB
testcase_21 AC 40 ms
52,352 KB
testcase_22 AC 40 ms
52,096 KB
testcase_23 AC 40 ms
51,968 KB
testcase_24 AC 40 ms
52,096 KB
testcase_25 AC 40 ms
52,096 KB
testcase_26 AC 40 ms
52,096 KB
testcase_27 AC 40 ms
52,096 KB
testcase_28 AC 320 ms
144,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
e = [[] for i in range(n)]
for _ in range(n-1):
    a,b = [int(x)-1 for x in input().split()]
    e[a].append(b)
    e[b].append(a)


depth = [n]*n
q = [0]
topo = []
depth[0] = 0
while q:
    now = q.pop()
    topo.append(now)
    for nex in e[now]:
        if depth[nex] > depth[now]+1:
            depth[nex] = depth[now]+1
            q.append(nex)

def solve(f):
    dp = [-1]*n
    for now in topo[::-1]:

        d = depth[now]%2

        ## max
        if d == f:

            ma = 0

            for nex in e[now]:
                if depth[nex] > depth[now]:
                    ma = max(ma,dp[nex]+1)
            
            dp[now] = ma
            
            

        ## min
        else:
            mi = n+1
            for nex in e[now]:
                if depth[nex] > depth[now]:
                    mi = min(mi,dp[nex]+1)

            
            if mi == n+1:
                mi = 0
            dp[now] = mi
    return dp[0]


print(solve(0))
print(solve(1))
0