結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-22 16:52:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 590 ms / 2,000 ms
コード長 1,150 bytes
コンパイル時間 1,056 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 144,468 KB
最終ジャッジ日時 2024-07-04 06:27:20
合計ジャッジ時間 11,863 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,536 KB
testcase_01 AC 39 ms
54,484 KB
testcase_02 AC 40 ms
55,308 KB
testcase_03 AC 38 ms
54,264 KB
testcase_04 AC 107 ms
77,616 KB
testcase_05 AC 105 ms
78,064 KB
testcase_06 AC 111 ms
80,056 KB
testcase_07 AC 95 ms
77,788 KB
testcase_08 AC 123 ms
80,224 KB
testcase_09 AC 122 ms
78,884 KB
testcase_10 AC 111 ms
78,368 KB
testcase_11 AC 100 ms
78,128 KB
testcase_12 AC 108 ms
78,116 KB
testcase_13 AC 91 ms
77,352 KB
testcase_14 AC 413 ms
102,032 KB
testcase_15 AC 359 ms
100,488 KB
testcase_16 AC 351 ms
98,800 KB
testcase_17 AC 262 ms
92,736 KB
testcase_18 AC 436 ms
102,740 KB
testcase_19 AC 544 ms
106,664 KB
testcase_20 AC 521 ms
106,708 KB
testcase_21 AC 531 ms
106,500 KB
testcase_22 AC 545 ms
106,748 KB
testcase_23 AC 550 ms
106,560 KB
testcase_24 AC 533 ms
106,564 KB
testcase_25 AC 556 ms
106,952 KB
testcase_26 AC 590 ms
108,172 KB
testcase_27 AC 527 ms
106,560 KB
testcase_28 AC 517 ms
108,444 KB
testcase_29 AC 255 ms
116,080 KB
testcase_30 AC 273 ms
121,052 KB
testcase_31 AC 283 ms
144,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bfs(x):
    dis = [n]*(n)
    dis[x] = 0
    q = deque([x])
    while q:
        now = q.popleft()
        for nex in e[now]:
            if dis[nex] > dis[now]+1:
                dis[nex] = dis[now]+1
                q.append(nex)
    return dis

def Euler_Tour(x):
    vis = [0]*n
    stack = [~x,x]
    ans = [0]*n
    vis[x] = 1
    count = -1
    while stack:
        now = stack.pop()
        count += 1
        if now >= 0:
            ans[now] = count
            for nex in e[now]:
                if dis[nex] == dis[now]-1 and vis[nex] == 0:
                    vis[nex] = 1
                    stack.append(~nex)
                    stack.append(nex)
            
            for nex in e[now]:
                if vis[nex] == 0:
                    vis[nex] = 1
                    stack.append(~nex)
                    stack.append(nex)
    return ans

n = int(input())
e = [[] for i in range(n)]
for i in range(n-1):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    e[a].append(b)
    e[b].append(a)

dis = bfs(0)
dis = bfs(dis.index(max(dis)))
print(max(Euler_Tour(dis.index(max(dis)))))
0