結果

問題 No.1015 おつりは要らないです
ユーザー FromBooskaFromBooska
提出日時 2023-02-24 15:10:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 2,282 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,680 KB
最終ジャッジ日時 2024-09-12 22:41:21
合計ジャッジ時間 8,991 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,536 KB
testcase_01 AC 36 ms
52,924 KB
testcase_02 AC 39 ms
53,444 KB
testcase_03 AC 38 ms
53,220 KB
testcase_04 AC 38 ms
53,036 KB
testcase_05 AC 38 ms
53,740 KB
testcase_06 AC 38 ms
53,120 KB
testcase_07 AC 39 ms
53,880 KB
testcase_08 AC 38 ms
54,276 KB
testcase_09 AC 38 ms
52,916 KB
testcase_10 AC 262 ms
91,080 KB
testcase_11 AC 268 ms
91,252 KB
testcase_12 AC 258 ms
90,996 KB
testcase_13 AC 262 ms
91,348 KB
testcase_14 AC 277 ms
91,680 KB
testcase_15 AC 263 ms
91,156 KB
testcase_16 AC 262 ms
91,160 KB
testcase_17 AC 275 ms
90,992 KB
testcase_18 AC 264 ms
91,064 KB
testcase_19 AC 266 ms
90,904 KB
testcase_20 AC 249 ms
91,000 KB
testcase_21 AC 248 ms
91,088 KB
testcase_22 AC 246 ms
91,048 KB
testcase_23 AC 241 ms
90,860 KB
testcase_24 AC 252 ms
91,064 KB
testcase_25 AC 250 ms
90,936 KB
testcase_26 AC 251 ms
91,196 KB
testcase_27 AC 249 ms
90,832 KB
testcase_28 AC 251 ms
90,840 KB
testcase_29 AC 251 ms
90,864 KB
testcase_30 AC 37 ms
52,952 KB
testcase_31 AC 111 ms
88,820 KB
testcase_32 AC 112 ms
89,012 KB
testcase_33 AC 110 ms
91,620 KB
testcase_34 AC 38 ms
53,624 KB
testcase_35 AC 38 ms
53,348 KB
testcase_36 AC 39 ms
53,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# dpも考えたがどのように構築するのかわからず
# dpでなく貪欲法、10000円札の使い方を貪欲で決める、次に5000円札の使い方を貪欲で決める
# 10000円札があるとき、1万円以上の商品には1万円札を使ってよい、千・5千を組み合わせて使ってbetterなことはない
# 10000円札があるとき、最大価格の店で使ってよい、それ未満の店で使うメリットなし

N, X, Y, Z = map(int, input().split())
A = list(map(int, input().split()))
A_heap = [-(a+1) for a in A]
from heapq import *
heapify(A_heap)

#print(A_heap)


X_remainder = X
Y_remainder = Y
Z_remainder = Z

# 1万円札貪欲
while len(A_heap)>0 and Z_remainder > 0:
    mx = - heappop(A_heap)
    Z_use = min(Z_remainder, mx//10000)
    if Z_use > 0:
        Z_remainder -= Z_use
        if mx - Z_use*10000 > 0:
            heappush(A_heap, -(mx - Z_use*10000))
    elif Z_use == 0:
        Z_use = 1
        Z_remainder -= Z_use
        if mx - Z_use*10000 > 0:
            heappush(A_heap, -(mx - Z_use*10000))        
    
    if Z_remainder == 0:
        break
    
#print(A_heap, [X_remainder, Y_remainder, Z_remainder])

# 5千円札貪欲
while len(A_heap)>0 and  Y_remainder > 0:
    mx = - heappop(A_heap)
    Y_use = min(Y_remainder, mx//5000)
    if Y_use > 0:
        Y_remainder -= Y_use
        if mx - Y_use*5000 > 0:
            heappush(A_heap, -(mx - Y_use*5000))
    elif Y_use == 0:
        Y_use = 1
        Y_remainder -= Y_use
        if mx - Y_use*5000 > 0:
            heappush(A_heap, -(mx - Y_use*5000))        
    
    if Y_remainder == 0:
        break
    
#print(A_heap, [X_remainder, Y_remainder, Z_remainder])


# 1千円札貪欲
while len(A_heap)>0 and  X_remainder > 0:
    mx = - heappop(A_heap)
    X_use = min(X_remainder, mx//1000)
    if X_use > 0:
        X_remainder -= X_use
        if mx - X_use*1000 > 0:
            heappush(A_heap, -(mx - X_use*1000))
    elif X_use == 0:
        X_use = 1
        X_remainder -= X_use
        if mx - X_use*1000 > 0:
            heappush(A_heap, -(mx - X_use*1000))  
    
    if X_remainder == 0:
        break
    
#print(A_heap, [X_remainder, Y_remainder, Z_remainder])

if len(A_heap) == 0:
    print('Yes')
else:
    print('No')



0