結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー mkawa2mkawa2
提出日時 2023-10-03 10:03:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 1,390 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 155,668 KB
最終ジャッジ日時 2024-07-26 14:00:09
合計ジャッジ時間 10,116 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,936 KB
testcase_01 AC 34 ms
52,936 KB
testcase_02 AC 35 ms
52,852 KB
testcase_03 AC 35 ms
53,064 KB
testcase_04 AC 65 ms
75,344 KB
testcase_05 AC 83 ms
78,004 KB
testcase_06 AC 85 ms
78,328 KB
testcase_07 AC 82 ms
77,464 KB
testcase_08 AC 89 ms
79,140 KB
testcase_09 AC 87 ms
78,752 KB
testcase_10 AC 85 ms
77,976 KB
testcase_11 AC 76 ms
77,624 KB
testcase_12 AC 74 ms
77,464 KB
testcase_13 AC 59 ms
70,820 KB
testcase_14 AC 294 ms
111,340 KB
testcase_15 AC 293 ms
118,072 KB
testcase_16 AC 262 ms
107,456 KB
testcase_17 AC 199 ms
106,764 KB
testcase_18 AC 342 ms
114,908 KB
testcase_19 AC 422 ms
133,256 KB
testcase_20 AC 421 ms
132,944 KB
testcase_21 AC 438 ms
132,052 KB
testcase_22 AC 406 ms
131,856 KB
testcase_23 AC 396 ms
131,884 KB
testcase_24 AC 410 ms
131,168 KB
testcase_25 AC 423 ms
131,616 KB
testcase_26 AC 391 ms
133,500 KB
testcase_27 AC 374 ms
131,104 KB
testcase_28 AC 392 ms
130,900 KB
testcase_29 AC 196 ms
129,512 KB
testcase_30 AC 219 ms
122,844 KB
testcase_31 AC 230 ms
155,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 63)
md = 10**9+7
# md = 998244353

def max_index(aa):
    mi, v = 0, aa[0]
    for i, a in enumerate(aa[1:], 1):
        if a > v: v, mi = a, i
    return mi

n=II()
to=[[] for _ in range(n)]
for _ in range(n-1):
    u,v=LI1()
    to[u].append(v)
    to[v].append(u)

def dfs(root=0):
    uu, stack = [], [root]
    while stack:
        u = stack.pop()
        uu.append(u)
        for v in to[u]:
            if v == parent[u]: continue
            parent[v] = u
            depth[v] = depth[u]+1
            stack.append(v)
    return uu

parent, depth = [-1]*n, [0]*n
dfs()
u=max_index(depth)
parent, depth = [-1]*n, [0]*n
dfs(u)
print(2*(n-1)-max(depth))
0