結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー ygd.ygd.
提出日時 2021-04-22 20:51:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,583 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 128,512 KB
最終ジャッジ日時 2024-07-04 06:34:04
合計ジャッジ時間 27,996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 49 ms
11,648 KB
testcase_05 AC 120 ms
14,976 KB
testcase_06 AC 126 ms
15,616 KB
testcase_07 AC 85 ms
13,312 KB
testcase_08 AC 151 ms
16,512 KB
testcase_09 AC 124 ms
15,616 KB
testcase_10 AC 115 ms
15,360 KB
testcase_11 AC 111 ms
14,592 KB
testcase_12 AC 97 ms
14,208 KB
testcase_13 AC 35 ms
11,136 KB
testcase_14 AC 1,224 ms
56,576 KB
testcase_15 AC 1,162 ms
54,528 KB
testcase_16 AC 1,053 ms
51,456 KB
testcase_17 AC 764 ms
41,216 KB
testcase_18 AC 1,305 ms
61,056 KB
testcase_19 AC 1,515 ms
69,248 KB
testcase_20 AC 1,583 ms
69,248 KB
testcase_21 AC 1,538 ms
69,248 KB
testcase_22 AC 1,534 ms
69,120 KB
testcase_23 AC 1,487 ms
69,120 KB
testcase_24 AC 1,505 ms
69,120 KB
testcase_25 AC 1,537 ms
69,248 KB
testcase_26 AC 1,473 ms
69,120 KB
testcase_27 AC 1,508 ms
69,248 KB
testcase_28 AC 1,512 ms
69,248 KB
testcase_29 AC 1,420 ms
128,512 KB
testcase_30 AC 1,474 ms
92,820 KB
testcase_31 AC 1,015 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(500000)
N = int(input())
G = [[] for _ in range(N)]
for i in range(N-1):
  a,b = map(int,input().split())
  a-=1;b-=1
  G[a].append((1,b))
  G[b].append((1,a))

def dfs(G,u,par): #頂点uから子に向かって最も遠い頂点とコストのペアを返す。
  ret = [0,u] #[cost,頂点]が返す値。
  for cost,v in G[u]:
    if v == par:
      continue
    nxt = dfs(G,v,u)
    nxt[0] += cost
    ret = max(ret,nxt) #大きいほうを返す。
  return ret

p = dfs(G,0,-1) #始点0からスタートして最も遠い頂点p[1]を求める。
q = dfs(G,p[1],-1) #p[1]は直径の端点なので、そこから最も遠い頂点q[1]を求める。
dia = q[0]#p[1]->q[1]間のコストq[0]が木の直径。
ans = dia + (N-1-dia)*2
print(ans) 
0