結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 197 ms
19,664 KB
testcase_11 AC 188 ms
19,388 KB
testcase_12 AC 129 ms
16,560 KB
testcase_13 AC 130 ms
18,492 KB
testcase_14 AC 200 ms
20,236 KB
testcase_15 AC 224 ms
21,656 KB
testcase_16 AC 232 ms
21,648 KB
testcase_17 AC 165 ms
21,656 KB
testcase_18 AC 144 ms
21,528 KB
testcase_19 AC 193 ms
21,648 KB
testcase_20 AC 135 ms
21,544 KB
testcase_21 AC 130 ms
21,544 KB
testcase_22 AC 138 ms
21,796 KB
testcase_23 AC 130 ms
21,672 KB
testcase_24 AC 204 ms
21,656 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