結果

問題 No.1430 Coup de Coupon
ユーザー convexineqconvexineq
提出日時 2021-05-20 23:55:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 2,000 ms
コード長 792 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 77,880 KB
最終ジャッジ日時 2024-10-10 07:22:56
合計ジャッジ時間 7,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,008 KB
testcase_01 AC 36 ms
52,624 KB
testcase_02 AC 37 ms
52,652 KB
testcase_03 AC 71 ms
74,324 KB
testcase_04 AC 84 ms
72,704 KB
testcase_05 AC 65 ms
71,652 KB
testcase_06 AC 484 ms
77,880 KB
testcase_07 AC 434 ms
77,676 KB
testcase_08 AC 99 ms
76,572 KB
testcase_09 AC 163 ms
77,600 KB
testcase_10 AC 211 ms
77,516 KB
testcase_11 AC 254 ms
77,360 KB
testcase_12 AC 304 ms
77,352 KB
testcase_13 AC 411 ms
77,400 KB
testcase_14 AC 412 ms
77,524 KB
testcase_15 AC 469 ms
77,500 KB
testcase_16 AC 503 ms
77,532 KB
testcase_17 AC 550 ms
77,400 KB
testcase_18 AC 362 ms
77,220 KB
testcase_19 AC 358 ms
77,620 KB
testcase_20 AC 210 ms
77,268 KB
testcase_21 AC 93 ms
76,388 KB
testcase_22 AC 37 ms
53,140 KB
testcase_23 AC 46 ms
60,892 KB
testcase_24 AC 55 ms
65,024 KB
testcase_25 AC 84 ms
76,720 KB
testcase_26 AC 108 ms
76,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,C = map(int,input().split())
p = [int(input()) for _ in range(n)]
const = []
per = []
for _ in range(C):
    t,x = map(int,input().split())
    if t==1:
        const.append(x)
    else:
        per.append(x)
p.sort(reverse=1)
const.sort(reverse=1)
per.sort(reverse=1)
Lc,Lp = len(const), len(per)
"""
dp[i][j] = i 個処理してconst を j 枚使った, つまり per は i-j 枚使った
"""
INF = 10**18
dp = [INF]*(Lc+1)
dp[0] = 0
for i,pi in enumerate(p):
    ndp = [x+pi for x in dp]
    for j in range(Lc+1):
        if i < j: break
        if i-j >= Lp: continue
        v = dp[j] + pi//100*(100-per[i-j])
        ndp[j] = min(ndp[j],v)
    for j in range(1,Lc+1):
        v = dp[j-1] + max(pi-const[j-1],0)
        ndp[j] = min(ndp[j],v)
    dp = ndp
    #print(dp)
print(min(dp))
0