結果

問題 No.2532 Want Play More
ユーザー detteiuudetteiuu
提出日時 2024-11-14 22:31:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 1,079 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 271,060 KB
最終ジャッジ日時 2024-11-14 22:31:39
合計ジャッジ時間 12,006 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,280 KB
testcase_01 AC 772 ms
100,524 KB
testcase_02 AC 727 ms
100,532 KB
testcase_03 AC 731 ms
99,744 KB
testcase_04 AC 717 ms
99,520 KB
testcase_05 AC 669 ms
98,676 KB
testcase_06 AC 734 ms
271,060 KB
testcase_07 AC 123 ms
76,928 KB
testcase_08 AC 133 ms
77,952 KB
testcase_09 AC 128 ms
77,696 KB
testcase_10 AC 382 ms
87,808 KB
testcase_11 AC 377 ms
87,908 KB
testcase_12 AC 551 ms
94,420 KB
testcase_13 AC 424 ms
89,856 KB
testcase_14 AC 212 ms
81,280 KB
testcase_15 AC 718 ms
100,224 KB
testcase_16 AC 646 ms
96,708 KB
testcase_17 AC 124 ms
77,568 KB
testcase_18 AC 476 ms
91,776 KB
testcase_19 AC 650 ms
97,204 KB
testcase_20 AC 40 ms
52,352 KB
testcase_21 AC 39 ms
52,352 KB
testcase_22 AC 40 ms
52,352 KB
testcase_23 AC 40 ms
52,340 KB
testcase_24 AC 40 ms
52,352 KB
testcase_25 AC 40 ms
52,480 KB
testcase_26 AC 40 ms
52,696 KB
testcase_27 AC 40 ms
52,336 KB
testcase_28 AC 317 ms
105,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from types import GeneratorType

def bootstrap(f, stack=[]):
    def wrappedfunc(*args, **kwargs):
        if stack:
            return f(*args, **kwargs)
        to = f(*args, **kwargs)
        while True:
            if type(to) is GeneratorType:
                stack.append(to)
                to = next(to)
            else:
                stack.pop()
                if not stack:
                    break
                to = stack[-1].send(to)
        return to
    return wrappedfunc

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

INF = 10**18

@bootstrap
def dfs(n, pre, depth, flag):
    MIN = INF
    MAX = -INF
    for v in G[n]:
        if v != pre:
            turn = yield dfs(v, n, depth+1, flag)
            MIN = min(MIN, turn)
            MAX = max(MAX, turn)
    if MIN != INF:
        if (depth+flag)%2 == 0:
            yield MAX+1
        else:
            yield MIN+1
    else:
        yield 0

print(dfs(0, -1, 0, False))
print(dfs(0, -1, 0, True))
0