結果

問題 No.2532 Want Play More
ユーザー ああいいああいい
提出日時 2023-11-11 21:38:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 614 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 140,396 KB
最終ジャッジ日時 2024-09-26 02:53:49
合計ジャッジ時間 9,633 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 597 ms
117,172 KB
testcase_02 AC 593 ms
117,148 KB
testcase_03 AC 562 ms
115,144 KB
testcase_04 AC 559 ms
114,432 KB
testcase_05 AC 541 ms
113,676 KB
testcase_06 AC 302 ms
135,444 KB
testcase_07 AC 109 ms
77,440 KB
testcase_08 AC 112 ms
78,012 KB
testcase_09 AC 111 ms
77,696 KB
testcase_10 AC 292 ms
95,976 KB
testcase_11 AC 283 ms
95,380 KB
testcase_12 AC 443 ms
107,132 KB
testcase_13 AC 346 ms
99,064 KB
testcase_14 AC 168 ms
82,300 KB
testcase_15 AC 614 ms
116,604 KB
testcase_16 AC 480 ms
109,940 KB
testcase_17 AC 110 ms
77,568 KB
testcase_18 AC 381 ms
102,740 KB
testcase_19 AC 502 ms
111,076 KB
testcase_20 AC 40 ms
52,096 KB
testcase_21 AC 40 ms
52,096 KB
testcase_22 AC 39 ms
52,480 KB
testcase_23 AC 40 ms
52,224 KB
testcase_24 AC 38 ms
52,224 KB
testcase_25 AC 39 ms
52,096 KB
testcase_26 AC 39 ms
51,840 KB
testcase_27 AC 40 ms
51,968 KB
testcase_28 AC 290 ms
140,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0] * 2 for _ in range(N)]

stack = [(0,-1,0)]
while stack:
    now,parent,f = stack.pop()
    if f == 0:
        stack.append((now,parent,1))
        for i in G[now]:
            if i == parent:continue
            stack.append((i,now,0))
        continue

    M = 0
    m = 10 ** 6
    count = 0
    for v in G[now]:
        if v == parent:continue
        count += 1
        if dp[v][1] > M:M = dp[v][1]
        if dp[v][0] < m:m = dp[v][0]
    if count == 0:
        M = 0
        m = 0
    dp[now][0] = M + 1
    dp[now][1] = m + 1
print(dp[0][0] - 1)
print(dp[0][1] - 1)
    
#print(dp)
0