結果
問題 | No.763 Noelちゃんと木遊び |
ユーザー | 已经死了 |
提出日時 | 2024-06-26 23:08:11 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 339 ms / 2,000 ms |
コード長 | 5,192 bytes |
コンパイル時間 | 1,943 ms |
コンパイル使用メモリ | 82,152 KB |
実行使用メモリ | 133,792 KB |
最終ジャッジ日時 | 2024-06-26 23:08:23 |
合計ジャッジ時間 | 10,155 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 292 ms
133,792 KB |
testcase_01 | AC | 248 ms
97,180 KB |
testcase_02 | AC | 322 ms
102,568 KB |
testcase_03 | AC | 294 ms
98,980 KB |
testcase_04 | AC | 238 ms
97,552 KB |
testcase_05 | AC | 248 ms
99,020 KB |
testcase_06 | AC | 321 ms
103,836 KB |
testcase_07 | AC | 339 ms
103,584 KB |
testcase_08 | AC | 276 ms
99,216 KB |
testcase_09 | AC | 232 ms
97,236 KB |
testcase_10 | AC | 207 ms
95,052 KB |
testcase_11 | AC | 314 ms
104,028 KB |
testcase_12 | AC | 334 ms
102,848 KB |
testcase_13 | AC | 321 ms
103,080 KB |
testcase_14 | AC | 309 ms
102,484 KB |
testcase_15 | AC | 255 ms
98,856 KB |
testcase_16 | AC | 208 ms
94,988 KB |
testcase_17 | AC | 270 ms
98,876 KB |
testcase_18 | AC | 331 ms
104,008 KB |
testcase_19 | AC | 326 ms
103,336 KB |
testcase_20 | AC | 299 ms
102,936 KB |
ソースコード
import os,sys,random,threading #sys.exit() 退出程序 from random import randint,choice,shuffle #randint(a,b)从[a,b]范围随机选择一个数 #choice(seq)seq可以是一个列表,元组或字符串,从seq中随机选取一个元素 #shuffle(x)将一个可变的序列x中的元素打乱 from copy import deepcopy from io import BytesIO,IOBase from types import GeneratorType from functools import lru_cache,reduce #reduce(op,迭代对象) from bisect import bisect_left,bisect_right #bisect_left(x) 大于等于x的第一个下标 #bisect_right(x) 大于x的第一个下标 from collections import Counter,defaultdict,deque from itertools import accumulate,combinations,permutations #accumulate(a)用a序列生成一个累积迭代器,一般list化前面放个[0]做前缀和用 #combinations(a,k)a序列选k个 组合迭代器 #permutations(a,k)a序列选k个 排列迭代器 from heapq import heapify,heappop,heappush #heapify将列表转为堆 from typing import Generic,Iterable,Iterator,TypeVar,Union,List from string import ascii_lowercase,ascii_uppercase,digits #小写字母,大写字母,十进制数字 from math import ceil,floor,sqrt,pi,factorial,gcd,log,log10,log2,inf #ceil向上取整,floor向下取整 ,sqrt开方 ,factorial阶乘 from decimal import Decimal,getcontext #Decimal(s) 实例化Decimal对象,一般使用字符串 #getcontext().prec=100 修改精度 from sys import stdin, stdout, setrecursionlimit input = lambda: sys.stdin.readline().rstrip("\r\n") MI = lambda :map(int,input().split()) li = lambda :list(MI()) ii = lambda :int(input()) mod = int(1e9 + 7) #998244353 inf = int(1e20) py = lambda :print("YES") pn = lambda :print("NO") DIRS = [(0, 1), (1, 0), (0, -1), (-1, 0)] # 右下左上 DIRS8 = [(0, 1), (1, 1), (1, 0), (1, -1), (0, -1), (-1, -1), (-1, 0),(-1, 1)] # →↘↓↙←↖↑↗ import os,sys,random,threading #sys.exit() 退出程序 #sys.setrecursionlimit(10**6) #调整栈空间 from random import randint,choice,shuffle #randint(a,b)从[a,b]范围随机选择一个数 #choice(seq)seq可以是一个列表,元组或字符串,从seq中随机选取一个元素 #shuffle(x)将一个可变的序列x中的元素打乱 from copy import deepcopy from io import BytesIO,IOBase from types import GeneratorType from functools import lru_cache,reduce #reduce(op,迭代对象) from bisect import bisect_left,bisect_right #bisect_left(x) 大于等于x的第一个下标 #bisect_right(x) 大于x的第一个下标 from collections import Counter,defaultdict,deque from itertools import accumulate,combinations,permutations #accumulate(a)用a序列生成一个累积迭代器,一般list化前面放个[0]做前缀和用 #combinations(a,k)a序列选k个 组合迭代器 #permutations(a,k)a序列选k个 排列迭代器 from heapq import heapify,heappop,heappush #heapify将列表转为堆 from typing import Generic,Iterable,Iterator,TypeVar,Union,List from string import ascii_lowercase,ascii_uppercase,digits #小写字母,大写字母,十进制数字 from math import ceil,floor,sqrt,pi,factorial,gcd,log,log10,log2,inf #ceil向上取整,floor向下取整 ,sqrt开方 ,factorial阶乘 from decimal import Decimal,getcontext #Decimal(s) 实例化Decimal对象,一般使用字符串 #getcontext().prec=100 修改精度 from sys import stdin, stdout, setrecursionlimit input = lambda: sys.stdin.readline().rstrip("\r\n") MI = lambda :map(int,input().split()) li = lambda :list(MI()) ii = lambda :int(input()) mod = int(1e9 + 7) #998244353 inf = 1<<60 py = lambda :print("YES") pn = lambda :print("NO") DIRS = [(0, 1), (1, 0), (0, -1), (-1, 0)] # 右下左上 DIRS8 = [(0, 1), (1, 1), (1, 0), (1, -1), (0, -1), (-1, -1), (-1, 0),(-1, 1)] # →↘↓↙←↖↑↗ def bootstrap(f, stack=[]): #yield def wrappedfunc(*args, **kwargs): if stack: return f(*args, **kwargs) else: 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=ii() g=[[] for _ in range(n+1)] for _ in range(n-1): u,v=li() g[u]+=[v] g[v]+=[u] if n==1: print(1) exit() @bootstrap def dfs(u,fa): # if len(g[u])==1 and g[u][0]==fa: # yield 1,-inf,0 # else: # t1=1 #u所在连通块只有一个节点 # t2=1 #u所在连通块至少有2个节点 # t3=0 #u删掉 # arr=[] # for v in g[u]: # if v==fa: # continue # g1,g2,g3=yield dfs(v,u) # arr.append([g1,g2,g3]) # t1+=max(g1-1,g2,g3) # t3+=max(g1,g2,g3) if len(g[u])==1 and g[u][0]==fa: yield 1,0 else: t1=1 #u不删 t2=0 #u删 for v in g[u]: if v==fa: continue g1,g2=yield dfs(v,u) t1+=max(g1-1,g2) t2+=max(g1,g2) yield t1,t2 res=dfs(1,-1) print(max(res))