結果
| 問題 |
No.3113 The farthest point
|
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2025-04-20 01:20:07 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 933 bytes |
| コンパイル時間 | 531 ms |
| コンパイル使用メモリ | 12,160 KB |
| 実行使用メモリ | 97,920 KB |
| 最終ジャッジ日時 | 2025-04-20 01:20:37 |
| 合計ジャッジ時間 | 25,369 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 WA * 4 |
ソースコード
import sys
input = sys.stdin.readline
N=int(input())
E=[[] for i in range(N)]
for i in range(N-1):
x,y,w=map(int,input().split())
x-=1
y-=1
E[x].append((y,w))
E[y].append((x,w))
ROOT=0
QUE=[ROOT]
Parent=[-1]*N
Parent[ROOT]=N # ROOTの親を定めておく.
Child=[[] for i in range(N)]
TOP_SORT=[] # トポロジカルソート
while QUE: # トポロジカルソートと同時に親を見つける
x=QUE.pop()
TOP_SORT.append(x)
for to,w in E[x]:
if Parent[to]==-1:
Parent[to]=x
Child[x].append(to)
QUE.append(to)
DP=[0]*N
ANS=0
for x in TOP_SORT[::-1]:
LIST=[]
for to,w in E[x]:
if to==Parent[x]:
continue
LIST.append(DP[to]+w)
LIST.sort(reverse=True)
if LIST:
ANS=max(ANS,LIST[0])
if len(LIST)>=2:
ANS=max(ANS,LIST[0]+LIST[1])
if LIST:
DP[x]=max(LIST)
print(ANS)
titia