結果

問題 No.2150 Site Supporter
ユーザー 👑 KazunKazun
提出日時 2022-12-07 00:09:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 840 ms / 2,000 ms
コード長 876 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 121,480 KB
最終ジャッジ日時 2024-10-13 11:18:29
合計ジャッジ時間 7,456 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 42 ms
52,352 KB
testcase_07 AC 42 ms
52,224 KB
testcase_08 AC 217 ms
82,776 KB
testcase_09 AC 547 ms
110,200 KB
testcase_10 AC 324 ms
95,872 KB
testcase_11 AC 840 ms
106,904 KB
testcase_12 AC 268 ms
89,856 KB
testcase_13 AC 315 ms
85,248 KB
testcase_14 AC 40 ms
51,968 KB
testcase_15 AC 40 ms
51,968 KB
testcase_16 AC 40 ms
52,736 KB
testcase_17 AC 485 ms
121,480 KB
testcase_18 AC 285 ms
92,032 KB
testcase_19 AC 204 ms
81,436 KB
testcase_20 AC 503 ms
100,996 KB
testcase_21 AC 209 ms
80,316 KB
testcase_22 AC 534 ms
109,828 KB
testcase_23 AC 41 ms
52,224 KB
testcase_24 AC 41 ms
51,968 KB
testcase_25 AC 42 ms
51,968 KB
testcase_26 AC 41 ms
52,480 KB
testcase_27 AC 237 ms
96,936 KB
testcase_28 AC 297 ms
97,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    from heapq import heapify, heappop, heappush

    N,K,X=map(int,input().split())
    A=list(map(int,input().split()))

    inf=float("inf")
    T=[[inf, inf] for _ in range(N+1)]
    T[0][0]=0

    Q=[(0,0,0)]
    while Q:
        cost,day,mode=heappop(Q)
        if day==N:
            return cost

        if mode==0:
            if cost+X<T[day][1]:
                T[day][1]=cost+X
                heappush(Q,(cost+X,day,1))
            if cost+A[day]<T[day+1][0]:
                T[day+1][0]=cost+A[day]
                heappush(Q,(cost+A[day],day+1,0))
        else:
            if cost+K<T[day+1][1]:
                T[day+1][1]=cost+K
                heappush(Q,(cost+K,day+1,1))
            if cost<T[day][0]:
                T[day][0]=cost
                heappush(Q,(cost,day,0))

#==================================================
print(solve())
0