結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー titiatitia
提出日時 2024-10-06 03:34:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,010 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 52,992 KB
最終ジャッジ日時 2024-10-06 03:34:51
合計ジャッジ時間 17,946 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 39 ms
11,264 KB
testcase_05 AC 80 ms
13,440 KB
testcase_06 AC 83 ms
13,696 KB
testcase_07 AC 57 ms
12,416 KB
testcase_08 AC 93 ms
14,336 KB
testcase_09 AC 83 ms
13,824 KB
testcase_10 AC 75 ms
13,568 KB
testcase_11 AC 71 ms
13,184 KB
testcase_12 AC 63 ms
12,800 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 698 ms
39,424 KB
testcase_15 AC 641 ms
38,016 KB
testcase_16 AC 590 ms
36,096 KB
testcase_17 AC 420 ms
29,824 KB
testcase_18 AC 788 ms
42,240 KB
testcase_19 AC 931 ms
47,232 KB
testcase_20 AC 927 ms
47,232 KB
testcase_21 AC 906 ms
47,232 KB
testcase_22 AC 1,010 ms
47,232 KB
testcase_23 AC 943 ms
47,232 KB
testcase_24 AC 939 ms
47,360 KB
testcase_25 AC 900 ms
47,360 KB
testcase_26 AC 944 ms
47,232 KB
testcase_27 AC 939 ms
47,104 KB
testcase_28 AC 934 ms
47,360 KB
testcase_29 AC 688 ms
52,992 KB
testcase_30 AC 730 ms
52,992 KB
testcase_31 AC 607 ms
42,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 解説AC。
# どこを一回通るか考える。

import sys
input = sys.stdin.readline

N=int(input())

E=[[] for i in range(N)]

for i in range(N-1):
    x,y=map(int,input().split())
    x-=1
    y-=1
    E[x].append(y)
    E[y].append(x)

DIS=[1<<30]*N
Q=[0]
DIS[0]=0

while Q:
    x=Q.pop()
    for to in E[x]:
        if DIS[to]>DIS[x]+1:
            DIS[to]=DIS[x]+1
            Q.append(to)

MAX=max(DIS)
ind=DIS.index(MAX)

DIS=[1<<30]*N
Q=[ind]
DIS[ind]=0

while Q:
    x=Q.pop()
    for to in E[x]:
        if DIS[to]>DIS[x]+1:
            DIS[to]=DIS[x]+1
            Q.append(to)

MAX=max(DIS)

print(2*N-2-MAX)
0