結果

問題 No.1071 ベホマラー
ユーザー titiatitia
提出日時 2020-06-05 21:31:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,656 KB
最終ジャッジ日時 2024-05-09 20:07:04
合計ジャッジ時間 4,708 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 35 ms
10,752 KB
testcase_07 AC 34 ms
10,624 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 33 ms
10,624 KB
testcase_10 AC 223 ms
19,664 KB
testcase_11 AC 219 ms
19,392 KB
testcase_12 AC 148 ms
16,560 KB
testcase_13 AC 153 ms
18,368 KB
testcase_14 AC 237 ms
20,236 KB
testcase_15 AC 267 ms
21,656 KB
testcase_16 AC 266 ms
21,648 KB
testcase_17 AC 199 ms
21,652 KB
testcase_18 AC 171 ms
21,524 KB
testcase_19 AC 230 ms
21,392 KB
testcase_20 AC 153 ms
21,544 KB
testcase_21 AC 148 ms
21,544 KB
testcase_22 AC 155 ms
21,416 KB
testcase_23 AC 150 ms
21,412 KB
testcase_24 AC 249 ms
21,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

R=[(a-1+K-1)//K for a in A]
import heapq
heapq.heapify(R)

ANS=0
common=0

#print(R)

while R:
    #print(ANS,R)
    while R and R[0]<=common:
        heapq.heappop(R)

    if len(R)*X>Y:
        ANS+=(R[0]-common)*Y
        common+=R[0]-common
    else:
        for t in R:
            ANS+=max(0,t-common)*X
        break
print(ANS)
0