結果

問題 No.1015 おつりは要らないです
ユーザー FromBooskaFromBooska
提出日時 2023-10-17 12:27:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 1,731 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 92,008 KB
最終ジャッジ日時 2024-09-17 10:36:06
合計ジャッジ時間 4,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,204 KB
testcase_01 AC 38 ms
52,508 KB
testcase_02 AC 37 ms
53,352 KB
testcase_03 AC 37 ms
52,912 KB
testcase_04 AC 37 ms
53,428 KB
testcase_05 AC 37 ms
53,656 KB
testcase_06 AC 37 ms
52,692 KB
testcase_07 AC 37 ms
52,632 KB
testcase_08 AC 36 ms
52,408 KB
testcase_09 AC 37 ms
53,232 KB
testcase_10 AC 109 ms
91,888 KB
testcase_11 AC 112 ms
91,688 KB
testcase_12 AC 109 ms
91,792 KB
testcase_13 AC 110 ms
91,860 KB
testcase_14 AC 112 ms
92,008 KB
testcase_15 AC 111 ms
91,664 KB
testcase_16 AC 109 ms
91,764 KB
testcase_17 AC 111 ms
91,976 KB
testcase_18 AC 108 ms
91,956 KB
testcase_19 AC 110 ms
91,476 KB
testcase_20 AC 101 ms
91,216 KB
testcase_21 AC 103 ms
91,716 KB
testcase_22 AC 103 ms
91,840 KB
testcase_23 AC 98 ms
89,916 KB
testcase_24 AC 102 ms
91,456 KB
testcase_25 AC 102 ms
91,372 KB
testcase_26 AC 102 ms
91,524 KB
testcase_27 AC 102 ms
91,084 KB
testcase_28 AC 102 ms
91,160 KB
testcase_29 AC 103 ms
91,452 KB
testcase_30 AC 40 ms
52,404 KB
testcase_31 AC 69 ms
83,164 KB
testcase_32 AC 69 ms
83,100 KB
testcase_33 AC 88 ms
91,892 KB
testcase_34 AC 36 ms
53,248 KB
testcase_35 AC 37 ms
53,220 KB
testcase_36 AC 38 ms
52,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# dpのように見えるが貪欲法、札降順で決めていく
# ぴったり金額では足らないのでa+1しておく
# すべての1万以上の商品に、1万未満となるまで、1万円札を使う、余れば商品価格降順で使い切る
# 次に5千円札、1千円札
# チャレンジケースで1RE、Z_remainderがNより大きければエラーだな

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

A1 = [a+1 for a in A]
# use 10000
Z_remainder = Z
for i in range(N):
    if A1[i] >= 10000:
        howmany = A1[i]//10000
        use = min(howmany, Z_remainder)
        Z_remainder -= use
        A1[i] = max(0, A1[i]-use*10000)
A1.sort(reverse = True)
for i in range(min(N, Z_remainder)):
    # Z_remainderが1以上なら、残る商品は10000円未満のはず
    A1[i] = max(0, A1[i]-10000)
    Z_remainder -= 1
    
#print(A1, Z_remainder)

# use 5000
Y_remainder = Y
for i in range(N):
    if A1[i] >= 5000:
        howmany = A1[i]//5000
        use = min(howmany, Y_remainder)
        Y_remainder -= use
        A1[i] = max(0, A1[i]-use*5000)
A1.sort(reverse = True)
for i in range(min(N, Y_remainder)):
    A1[i] = max(0, A1[i]-5000)
    Y_remainder -= 1
    
#print(A1, Y_remainder)

# use 1000
X_remainder = X
for i in range(N):
    if A1[i] >= 1000:
        # 1000のときは繰り上げで使う必要あるだろう
        howmany = (A1[i]+999)//1000
        use = min(howmany, X_remainder)
        X_remainder -= use
        A1[i] = max(0, A1[i]-use*1000)
A1.sort(reverse = True)
for i in range(min(N, X_remainder)):
    A1[i] = max(0, A1[i]-1000)
    X_remainder -= 1
    
#print(A1, X_remainder)

if sum(A1) == 0:
    print('Yes')
else:
    print('No')

0