結果

問題 No.1928 Make a Binary Tree
ユーザー vwxyzvwxyz
提出日時 2023-05-21 14:20:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 958 ms / 3,000 ms
コード長 7,463 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 86,840 KB
実行使用メモリ 181,120 KB
最終ジャッジ日時 2023-08-23 15:07:45
合計ジャッジ時間 36,132 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
93,964 KB
testcase_01 AC 245 ms
93,824 KB
testcase_02 AC 241 ms
93,820 KB
testcase_03 AC 241 ms
93,948 KB
testcase_04 AC 242 ms
93,824 KB
testcase_05 AC 244 ms
93,828 KB
testcase_06 AC 239 ms
94,072 KB
testcase_07 AC 243 ms
94,216 KB
testcase_08 AC 245 ms
94,088 KB
testcase_09 AC 240 ms
93,948 KB
testcase_10 AC 243 ms
93,948 KB
testcase_11 AC 244 ms
93,948 KB
testcase_12 AC 250 ms
93,828 KB
testcase_13 AC 243 ms
93,948 KB
testcase_14 AC 242 ms
93,748 KB
testcase_15 AC 367 ms
101,176 KB
testcase_16 AC 364 ms
100,928 KB
testcase_17 AC 339 ms
101,056 KB
testcase_18 AC 364 ms
101,460 KB
testcase_19 AC 275 ms
98,476 KB
testcase_20 AC 358 ms
101,040 KB
testcase_21 AC 322 ms
99,864 KB
testcase_22 AC 359 ms
100,660 KB
testcase_23 AC 358 ms
100,824 KB
testcase_24 AC 371 ms
101,716 KB
testcase_25 AC 387 ms
102,392 KB
testcase_26 AC 846 ms
146,972 KB
testcase_27 AC 658 ms
127,964 KB
testcase_28 AC 675 ms
129,632 KB
testcase_29 AC 909 ms
152,812 KB
testcase_30 AC 633 ms
124,764 KB
testcase_31 AC 714 ms
133,740 KB
testcase_32 AC 904 ms
151,576 KB
testcase_33 AC 662 ms
128,208 KB
testcase_34 AC 729 ms
135,792 KB
testcase_35 AC 478 ms
146,772 KB
testcase_36 AC 572 ms
167,236 KB
testcase_37 AC 628 ms
157,348 KB
testcase_38 AC 245 ms
93,912 KB
testcase_39 AC 731 ms
158,168 KB
testcase_40 AC 834 ms
158,380 KB
testcase_41 AC 836 ms
157,588 KB
testcase_42 AC 752 ms
157,796 KB
testcase_43 AC 729 ms
157,600 KB
testcase_44 AC 746 ms
158,444 KB
testcase_45 AC 749 ms
158,280 KB
testcase_46 AC 748 ms
158,592 KB
testcase_47 AC 757 ms
158,416 KB
testcase_48 AC 736 ms
158,700 KB
testcase_49 AC 479 ms
167,276 KB
testcase_50 AC 820 ms
149,244 KB
testcase_51 AC 827 ms
149,620 KB
testcase_52 AC 814 ms
149,896 KB
testcase_53 AC 797 ms
149,508 KB
testcase_54 AC 825 ms
148,756 KB
testcase_55 AC 536 ms
165,860 KB
testcase_56 AC 950 ms
153,596 KB
testcase_57 AC 935 ms
151,952 KB
testcase_58 AC 958 ms
150,660 KB
testcase_59 AC 776 ms
181,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write

class Graph:
    def __init__(self,V,edges=None,graph=None,directed=False,weighted=False,inf=float("inf")):
        self.V=V
        self.directed=directed
        self.weighted=weighted
        self.inf=inf
        if graph!=None:
            self.graph=graph
            self.edges=[]
            for i in range(self.V):
                if self.weighted:
                    for j,d in self.graph[i]:
                        if self.directed or not self.directed and i<=j:
                            self.edges.append((i,j,d))
                else:
                    for j in self.graph[i]:
                        if self.directed or not self.directed and i<=j:
                            self.edges.append((i,j))
        else:
            self.edges=edges
            self.graph=[[] for i in range(self.V)]
            if weighted:
                for i,j,d in self.edges:
                    self.graph[i].append((j,d))
                    if not self.directed:
                        self.graph[j].append((i,d))
            else:
                for i,j in self.edges:
                    self.graph[i].append(j)
                    if not self.directed:
                        self.graph[j].append(i)

    def SIV_DFS(self,s,bipartite_graph=False,cycle_detection=False,directed_acyclic=False,euler_tour=False,linked_components=False,lowlink=False,parents=False,postorder=False,preorder=False,subtree_size=False,topological_sort=False,unweighted_dist=False,weighted_dist=False):
        seen=[False]*self.V
        finished=[False]*self.V
        if directed_acyclic or cycle_detection or topological_sort:
            dag=True
        if euler_tour:
            et=[]
        if linked_components:
            lc=[]
        if lowlink:
            order=[None]*self.V
            ll=[None]*self.V
            idx=0
        if parents or cycle_detection or lowlink or subtree_size:
            ps=[None]*self.V
        if postorder or topological_sort:
            post=[]
        if preorder:
            pre=[]
        if subtree_size:
            ss=[1]*self.V
        if unweighted_dist or bipartite_graph:
            uwd=[self.inf]*self.V
            uwd[s]=0
        if weighted_dist:
            wd=[self.inf]*self.V
            wd[s]=0
        stack=[(s,0)] if self.weighted else [s]
        while stack:
            if self.weighted:
                x,d=stack.pop()
            else:
                x=stack.pop()
            if not seen[x]:
                seen[x]=True
                stack.append((x,d) if self.weighted else x)
                if euler_tour:
                    et.append(x)
                if linked_components:
                    lc.append(x)
                if lowlink:
                    order[x]=idx
                    ll[x]=idx
                    idx+=1
                if preorder:
                    pre.append(x)
                for y in self.graph[x]:
                    if self.weighted:
                        y,d=y
                    if not seen[y]:
                        stack.append((y,d) if self.weighted else y)
                        if parents or cycle_detection or lowlink or subtree_size:
                            ps[y]=x
                        if unweighted_dist or bipartite_graph:
                            uwd[y]=uwd[x]+1
                        if weighted_dist:
                            wd[y]=wd[x]+d
                    elif not finished[y]:
                        if (directed_acyclic or cycle_detection or topological_sort) and dag:
                            dag=False
                            if cycle_detection:
                                cd=(y,x)
            elif not finished[x]:
                finished[x]=True
                if euler_tour:
                    et.append(~x)
                if lowlink:
                    bl=True
                    for y in self.graph[x]:
                        if self.weighted:
                            y,d=y
                        if ps[x]==y and bl:
                            bl=False
                            continue
                        ll[x]=min(ll[x],order[y])
                    if x!=s:
                        ll[ps[x]]=min(ll[ps[x]],ll[x])
                if postorder or topological_sort:
                    post.append(x)
                if subtree_size:
                    for y in self.graph[x]:
                        if self.weighted:
                            y,d=y
                        if y==ps[x]:
                            continue
                        ss[x]+=ss[y]
        if bipartite_graph:
            bg=[[],[]]
            for tpl in self.edges:
                x,y=tpl[:2] if self.weighted else tpl
                if uwd[x]==self.inf or uwd[y]==self.inf:
                    continue
                if not uwd[x]%2^uwd[y]%2:
                    bg=False
                    break
            else:
                for x in range(self.V):
                    if uwd[x]==self.inf:
                        continue
                    bg[uwd[x]%2].append(x)
        retu=()
        if bipartite_graph:
            retu+=(bg,)
        if cycle_detection:
            if dag:
                cd=[]
            else:
                y,x=cd
                cd=self.Route_Restoration(y,x,ps)
            retu+=(cd,)
        if directed_acyclic:
            retu+=(dag,)
        if euler_tour:
            retu+=(et,)
        if linked_components:
            retu+=(lc,)
        if lowlink:
            retu=(ll,)
        if parents:
            retu+=(ps,)
        if postorder:
            retu+=(post,)
        if preorder:
            retu+=(pre,)
        if subtree_size:
            retu+=(ss,)
        if topological_sort:
            if dag:
                tp_sort=post[::-1]
            else:
                tp_sort=[]
            retu+=(tp_sort,)
        if unweighted_dist:
            retu+=(uwd,)
        if weighted_dist:
            retu+=(wd,)
        if len(retu)==1:
            retu=retu[0]
        return retu

N=int(readline())
edges=[]
for n in range(N-1):
    x,y=map(int,readline().split())
    x-=1;y-=1
    edges.append((x,y))
G=Graph(N,edges=edges)
parents,tour=G.SIV_DFS(0,parents=True,postorder=True)
dp=[None]*N
for x in tour:
    child=[y for y in G.graph[x] if parents[x]!=y]
    if not child:
        dp[x]=[1]
    else:
        ma=max(len(dp[y]) for y in child)
        for y in child:
            if len(dp[y])==ma:
                c=y
        dp[x]=dp[c]
        for y in child:
            if y==c:
                continue
            for cnt in dp[y]:
                _heappush_max(dp[x],cnt)
        if len(dp[x])>=2:
            _heappush_max(dp[x],_heappop_max(dp[x])+_heappop_max(dp[x]))
        dp[x][0]+=1
ans=dp[0][0]
print(ans)
0