結果

問題 No.2532 Want Play More
ユーザー titiatitia
提出日時 2023-11-07 02:02:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 915 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 92,544 KB
最終ジャッジ日時 2024-09-25 23:14:05
合計ジャッジ時間 12,618 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 909 ms
43,776 KB
testcase_02 AC 893 ms
43,648 KB
testcase_03 AC 855 ms
42,496 KB
testcase_04 AC 824 ms
42,112 KB
testcase_05 AC 835 ms
41,344 KB
testcase_06 AC 737 ms
92,544 KB
testcase_07 AC 36 ms
11,136 KB
testcase_08 AC 47 ms
11,776 KB
testcase_09 AC 47 ms
11,648 KB
testcase_10 AC 389 ms
26,112 KB
testcase_11 AC 394 ms
25,984 KB
testcase_12 AC 652 ms
35,200 KB
testcase_13 AC 472 ms
28,928 KB
testcase_14 AC 154 ms
16,512 KB
testcase_15 AC 915 ms
43,392 KB
testcase_16 AC 756 ms
38,400 KB
testcase_17 AC 46 ms
11,520 KB
testcase_18 AC 562 ms
32,128 KB
testcase_19 AC 779 ms
39,040 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 31 ms
10,496 KB
testcase_23 AC 28 ms
10,624 KB
testcase_24 AC 28 ms
10,624 KB
testcase_25 AC 29 ms
10,496 KB
testcase_26 AC 29 ms
10,624 KB
testcase_27 AC 30 ms
10,496 KB
testcase_28 AC 549 ms
38,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

sys.setrecursionlimit(10**7)

N=int(input())
E=[[] for i in range(N+1)]

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

def calc(point,parent,minmax):
    ANS=0
    for to in E[point]:
        if to==parent:
            continue

        if minmax==0:
            if ANS==0:
                ANS=1<<30
            ANS=min(ANS,1+calc(to,point,minmax^1))
        else:
            ANS=max(ANS,1+calc(to,point,minmax^1))
    return ANS

print(calc(1,-1,1))
print(calc(1,-1,0))
0