結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー ygd.ygd.
提出日時 2021-04-22 20:47:04
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 743 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 115,228 KB
最終ジャッジ日時 2024-07-04 06:31:59
合計ジャッジ時間 11,656 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,960 KB
testcase_01 AC 35 ms
53,240 KB
testcase_02 AC 34 ms
53,536 KB
testcase_03 AC 35 ms
53,276 KB
testcase_04 AC 84 ms
77,272 KB
testcase_05 AC 104 ms
79,004 KB
testcase_06 AC 101 ms
79,100 KB
testcase_07 AC 90 ms
77,748 KB
testcase_08 AC 113 ms
79,992 KB
testcase_09 AC 112 ms
79,096 KB
testcase_10 AC 114 ms
79,364 KB
testcase_11 AC 102 ms
78,748 KB
testcase_12 AC 96 ms
78,300 KB
testcase_13 AC 73 ms
74,588 KB
testcase_14 AC 479 ms
102,644 KB
testcase_15 AC 476 ms
101,232 KB
testcase_16 AC 412 ms
99,260 KB
testcase_17 AC 321 ms
93,640 KB
testcase_18 AC 519 ms
104,912 KB
testcase_19 AC 598 ms
109,524 KB
testcase_20 AC 590 ms
109,172 KB
testcase_21 AC 602 ms
109,500 KB
testcase_22 AC 607 ms
109,316 KB
testcase_23 AC 595 ms
109,468 KB
testcase_24 AC 586 ms
109,108 KB
testcase_25 AC 594 ms
109,380 KB
testcase_26 AC 609 ms
109,168 KB
testcase_27 AC 621 ms
109,380 KB
testcase_28 AC 624 ms
109,516 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 290 ms
115,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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