結果

問題 No.1488 Max Score of the Tree
ユーザー titiatitia
提出日時 2021-04-23 23:14:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,159 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 21,268 KB
最終ジャッジ日時 2024-07-04 08:43:18
合計ジャッジ時間 3,507 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 30 ms
11,136 KB
testcase_06 AC 36 ms
11,392 KB
testcase_07 AC 259 ms
16,404 KB
testcase_08 AC 35 ms
11,008 KB
testcase_09 AC 256 ms
13,616 KB
testcase_10 AC 96 ms
14,000 KB
testcase_11 AC 660 ms
21,268 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 30 ms
11,008 KB
testcase_16 WA -
testcase_17 AC 30 ms
11,008 KB
testcase_18 AC 30 ms
11,008 KB
testcase_19 WA -
testcase_20 AC 31 ms
11,008 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 32 ms
11,008 KB
testcase_23 AC 31 ms
11,008 KB
testcase_24 AC 30 ms
11,136 KB
testcase_25 AC 31 ms
10,880 KB
testcase_26 AC 31 ms
10,880 KB
testcase_27 AC 32 ms
10,880 KB
testcase_28 AC 43 ms
11,508 KB
testcase_29 AC 31 ms
11,008 KB
testcase_30 AC 31 ms
10,880 KB
testcase_31 AC 314 ms
16,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())

E=[tuple(map(int,input().split())) for i in range(N-1)]

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

for a,b,e in E:
    a-=1
    b-=1
    EDGE[a].append((b,e))
    EDGE[b].append((a,e))

QUE=[0] 
Parent=[-1]*(N+1)
Parent[0]=0
TOP_SORT=[]

while QUE:
    x=QUE.pop()
    TOP_SORT.append(x)
    for to,w in EDGE[x]:
        if Parent[to]==-1:
            Parent[to]=x,w
            QUE.append(to)

EW=[0]*N

for n in TOP_SORT[1:][::-1]:
    if EW[n]==0:
        EW[n]=1
    EW[Parent[n][0]]+=EW[n]

XX=[]
for i in range(1,N):
    XX.append((Parent[i][1],EW[i]))

XC=[[] for i in range(101)]

for x,c in XX:
    XC[c].append(x)

ANS=0
cost=0

for i in range(100,-1,-1):
    if sum(XC[i])+cost<=K:
        ANS+=sum(XC[i])*i*2
        cost+=sum(XC[i])
    else:
        rest=K-cost
        DP={0}

        for j in XC[i]:
            NDP=DP.copy()
            for d in DP:
                if d+j<=rest:
                    NDP.add(d+j)
            DP=NDP

        MAX=max(DP)
        SUM=sum(XC[i])
        ANS+=((SUM-MAX)+MAX*2)*i
        cost+=MAX
print(ANS)
        
            
            
            
0