結果

問題 No.1430 Coup de Coupon
ユーザー so4649so4649
提出日時 2021-03-14 15:34:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 524 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 272,456 KB
最終ジャッジ日時 2024-11-06 05:27:06
合計ジャッジ時間 7,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,004 KB
testcase_01 AC 37 ms
52,732 KB
testcase_02 AC 37 ms
52,464 KB
testcase_03 AC 463 ms
272,284 KB
testcase_04 AC 46 ms
64,560 KB
testcase_05 AC 46 ms
63,324 KB
testcase_06 AC 372 ms
272,204 KB
testcase_07 AC 381 ms
272,456 KB
testcase_08 AC 57 ms
69,132 KB
testcase_09 AC 165 ms
97,560 KB
testcase_10 AC 217 ms
107,580 KB
testcase_11 AC 319 ms
130,952 KB
testcase_12 AC 344 ms
153,516 KB
testcase_13 AC 404 ms
175,868 KB
testcase_14 AC 444 ms
195,692 KB
testcase_15 AC 488 ms
215,056 KB
testcase_16 AC 498 ms
222,848 KB
testcase_17 AC 524 ms
246,432 KB
testcase_18 AC 397 ms
174,588 KB
testcase_19 AC 449 ms
176,576 KB
testcase_20 AC 184 ms
127,684 KB
testcase_21 AC 134 ms
105,952 KB
testcase_22 AC 37 ms
53,252 KB
testcase_23 AC 37 ms
53,948 KB
testcase_24 AC 56 ms
67,092 KB
testcase_25 AC 97 ms
90,196 KB
testcase_26 AC 91 ms
82,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n,c = map(int,input().split())
p = [int(input()) for i in range(n)]

p.sort(reverse=True)
hiki = []
wari = []
for i in range(c):
    t,x = map(int,input().split())
    if t == 1:
        hiki.append(x)
    else:
        wari.append(x)
hiki.sort(reverse=True)
wari.sort(reverse=True)

if len(hiki)+len(wari) < n:
    for i in range(n-c):
        hiki.append(0)
        wari.append(0)
    c = n


INF = 10**15
# i番目で、既にhikiをj枚使っている時の値段
dp = [[INF]*(len(hiki)+1) for i in range(n+1)]
dp[0][0] = 0

for i in range(n):
    for j in range(min(i,len(hiki))+1):
        if j < len(hiki):
            dp[i+1][j+1] = min(dp[i+1][j+1],dp[i][j]+max(0,p[i]-hiki[j]))
        if i-j < len(wari):
            dp[i+1][j] = min(dp[i+1][j],dp[i][j]+p[i]//100*(100-wari[i-j]))

ans = min(dp[n])
print(ans)
0