結果

問題 No.1154 シュークリームゲーム(Hard)
ユーザー Kiri8128Kiri8128
提出日時 2020-07-01 01:22:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 1,370 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-09-13 15:46:10
合計ジャッジ時間 3,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 30 ms
11,008 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 31 ms
11,008 KB
testcase_13 AC 31 ms
11,008 KB
testcase_14 AC 31 ms
11,136 KB
testcase_15 AC 31 ms
11,008 KB
testcase_16 AC 31 ms
11,136 KB
testcase_17 AC 38 ms
11,008 KB
testcase_18 AC 38 ms
11,392 KB
testcase_19 AC 37 ms
11,264 KB
testcase_20 AC 38 ms
11,264 KB
testcase_21 AC 38 ms
11,136 KB
testcase_22 AC 38 ms
11,008 KB
testcase_23 AC 37 ms
11,392 KB
testcase_24 AC 38 ms
11,136 KB
testcase_25 AC 38 ms
11,392 KB
testcase_26 AC 38 ms
11,392 KB
testcase_27 AC 38 ms
11,392 KB
testcase_28 AC 38 ms
11,008 KB
testcase_29 AC 38 ms
11,264 KB
testcase_30 AC 37 ms
11,136 KB
testcase_31 AC 39 ms
11,264 KB
testcase_32 AC 36 ms
11,264 KB
testcase_33 AC 38 ms
11,264 KB
testcase_34 AC 38 ms
11,136 KB
testcase_35 AC 38 ms
11,264 KB
testcase_36 AC 37 ms
11,264 KB
testcase_37 AC 38 ms
11,392 KB
testcase_38 AC 29 ms
10,880 KB
testcase_39 AC 30 ms
10,880 KB
testcase_40 AC 53 ms
15,104 KB
testcase_41 AC 38 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())
A = [int(a) for a in input().split()]
E = [[] for _ in range(N)]
for _ in range(N - 1):
    a, b = map(int, input().split())
    E[a-1].append(b-1)
    E[b-1].append(a-1)

X = [[] for i in range(N)]
P = [-1] * N
Q = deque([0])
R = []
while Q:
    i = deque.popleft(Q)
    R.append(i)
    for a in E[i]:
        if a != P[i]:
            P[a] = i
            E[a].remove(i)
            deque.append(Q, a)

C = [[] for _ in range(N)]
    
def calclist(p, L):
    L = sorted(L)
    while L and L[-1] > p:
        p -= L.pop()
        if L:
            if L[-1] > - (1 << 50):
                p += L.pop()
            else:
                while L:
                    p += L.pop() + ((1 << 50) if p < - (1 << 50) else 0)
        else:
            p -= 1 << 50
            return [p]
    return [p] + L

def summ(L):
    p = 0
    L = sorted(L)
    while L:
        if L[-1] > - (1 << 50):
            p += L.pop()
            if L:
                if L[-1] > - (1 << 50):
                    p -= L.pop()
                else:
                    p -= sum([a + (1 << 50) for a in L])
                    L = []
        else:
            p += sum([a + (1 << 50) for a in L])
            L = []
    return p

for i in R[::-1]:
    t = calclist(A[i], C[i])
    if P[i] >= 0:
        C[P[i]] += t
    else:
        print(summ(t))
0