結果

問題 No.1430 Coup de Coupon
ユーザー convexineqconvexineq
提出日時 2021-05-21 00:11:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 643 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,716 KB
実行使用メモリ 77,988 KB
最終ジャッジ日時 2024-10-10 07:23:05
合計ジャッジ時間 8,091 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,216 KB
testcase_01 AC 39 ms
52,924 KB
testcase_02 AC 43 ms
52,772 KB
testcase_03 AC 75 ms
76,568 KB
testcase_04 AC 69 ms
72,480 KB
testcase_05 AC 66 ms
70,428 KB
testcase_06 AC 449 ms
77,036 KB
testcase_07 AC 473 ms
77,500 KB
testcase_08 AC 95 ms
76,564 KB
testcase_09 AC 181 ms
77,056 KB
testcase_10 AC 250 ms
77,540 KB
testcase_11 AC 295 ms
77,632 KB
testcase_12 AC 348 ms
77,560 KB
testcase_13 AC 427 ms
77,536 KB
testcase_14 AC 475 ms
77,640 KB
testcase_15 AC 541 ms
77,988 KB
testcase_16 AC 581 ms
77,840 KB
testcase_17 AC 643 ms
77,968 KB
testcase_18 AC 418 ms
77,616 KB
testcase_19 AC 434 ms
77,640 KB
testcase_20 AC 255 ms
77,556 KB
testcase_21 AC 97 ms
76,336 KB
testcase_22 AC 40 ms
52,436 KB
testcase_23 AC 47 ms
60,476 KB
testcase_24 AC 65 ms
69,208 KB
testcase_25 AC 86 ms
76,528 KB
testcase_26 AC 117 ms
76,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,C = map(int,input().split())
p = sorted(int(input()) for _ in range(n))[::-1]
R = []
S = []
for _ in range(C):
    t,x = map(int,input().split())
    if t==1: R.append(x)
    else: S.append(x)
R.sort(reverse=1)
S.sort(reverse=1)
Lc,Lp = len(R), len(S)
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 j:
            ndp[j] = min(ndp[j], dp[j-1] + max(pi-R[j-1],0))
        if 0 <= i-j < Lp:
            ndp[j] = min(ndp[j], dp[j] + pi//100*(100-S[i-j]))
    dp = ndp
print(min(dp))
0