結果

問題 No.1928 Make a Binary Tree
ユーザー sotanishysotanishy
提出日時 2022-05-06 22:25:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 873 ms / 3,000 ms
コード長 2,064 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 161,124 KB
最終ジャッジ日時 2024-07-05 23:44:04
合計ジャッジ時間 26,953 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,636 KB
testcase_01 AC 37 ms
53,500 KB
testcase_02 AC 37 ms
53,564 KB
testcase_03 AC 36 ms
53,016 KB
testcase_04 AC 36 ms
53,140 KB
testcase_05 AC 37 ms
53,748 KB
testcase_06 AC 37 ms
53,448 KB
testcase_07 AC 39 ms
54,260 KB
testcase_08 AC 42 ms
60,660 KB
testcase_09 AC 42 ms
59,288 KB
testcase_10 AC 38 ms
52,952 KB
testcase_11 AC 37 ms
54,192 KB
testcase_12 AC 38 ms
52,836 KB
testcase_13 AC 40 ms
54,592 KB
testcase_14 AC 38 ms
54,400 KB
testcase_15 AC 176 ms
79,724 KB
testcase_16 AC 159 ms
78,512 KB
testcase_17 AC 148 ms
78,456 KB
testcase_18 AC 175 ms
79,832 KB
testcase_19 AC 90 ms
76,948 KB
testcase_20 AC 155 ms
78,200 KB
testcase_21 AC 127 ms
78,020 KB
testcase_22 AC 156 ms
78,600 KB
testcase_23 AC 148 ms
78,172 KB
testcase_24 AC 173 ms
79,404 KB
testcase_25 AC 177 ms
79,796 KB
testcase_26 AC 719 ms
109,656 KB
testcase_27 AC 516 ms
97,852 KB
testcase_28 AC 516 ms
99,772 KB
testcase_29 AC 794 ms
116,276 KB
testcase_30 AC 485 ms
98,204 KB
testcase_31 AC 606 ms
107,052 KB
testcase_32 AC 775 ms
115,464 KB
testcase_33 AC 498 ms
97,776 KB
testcase_34 AC 602 ms
107,720 KB
testcase_35 AC 466 ms
112,028 KB
testcase_36 AC 570 ms
141,384 KB
testcase_37 AC 457 ms
115,608 KB
testcase_38 AC 37 ms
53,656 KB
testcase_39 AC 736 ms
124,468 KB
testcase_40 AC 726 ms
123,932 KB
testcase_41 AC 748 ms
124,160 KB
testcase_42 AC 756 ms
124,104 KB
testcase_43 AC 740 ms
124,360 KB
testcase_44 AC 759 ms
123,976 KB
testcase_45 AC 735 ms
124,176 KB
testcase_46 AC 745 ms
124,196 KB
testcase_47 AC 730 ms
124,116 KB
testcase_48 AC 747 ms
124,052 KB
testcase_49 AC 521 ms
131,924 KB
testcase_50 AC 712 ms
112,188 KB
testcase_51 AC 720 ms
111,836 KB
testcase_52 AC 714 ms
111,688 KB
testcase_53 AC 711 ms
112,196 KB
testcase_54 AC 706 ms
111,296 KB
testcase_55 AC 575 ms
142,136 KB
testcase_56 AC 843 ms
113,800 KB
testcase_57 AC 873 ms
113,632 KB
testcase_58 AC 846 ms
113,800 KB
testcase_59 AC 587 ms
161,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class SegmentTree:
    def __init__(self, size, op, identity):
        n = 1 << (size - 1).bit_length()
        self.size = n
        self.op = op
        self.identity = identity
        self.node = [identity] * (2 * n)

    def __getitem__(self, k):
        return self.node[k + self.size]

    def build(self, v):
        for k in range(len(v)):
            self.node[k + self.size] = v[k]
        for k in range(self.size - 1, 0, -1):
            self.node[k] = self.op(self.node[2 * k], self.node[2 * k + 1])

    def update(self, k, x):
        k += self.size
        self.node[k] = x
        while k > 1:
            k >>= 1
            self.node[k] = self.op(self.node[2 * k], self.node[2 * k + 1])

    def fold(self, l, r):
        vl = vr = self.identity
        l += self.size
        r += self.size
        while l < r:
            if l & 1:
                vl = self.op(vl, self.node[l])
                l += 1
            if r & 1:
                r -= 1
                vr = self.op(self.node[r], vr)
            l >>= 1
            r >>= 1
        return self.op(vl, vr)

def euler_tour(G, root):
    N = len(G)
    stack = [(root, -1, 1), (root, -1, 0)]
    et = []
    first = [-1] * N
    last = [-1] * N
    k = 0
    while stack:
        v, p, t = stack.pop()
        if t == 0:
            et.append(v)
            first[v] = k
            k += 1
            for c in G[v]:
                if c != p:
                    stack.append((c, v, 1))
                    stack.append((c, v, 0))
        else:
            last[v] = k
    return et, first, last

N = int(input())
G = [[] for _ in range(N)]
for _ in range(N-1):
    x, y = map(lambda x: int(x)-1, input().split())
    G[x].append(y)
    G[y].append(x)
et, first, last = euler_tour(G, 0)
st = SegmentTree(N, max, (0, -1))
for v in et[::-1]:
    m = 1
    for _ in range(2):
        x, i = st.fold(first[v], last[v])
        if i != -1:
            m += x
            st.update(i, (0, -1))
    st.update(first[v], (m, first[v]))
print(st[0][0])

0