結果

問題 No.1430 Coup de Coupon
ユーザー mkawa2mkawa2
提出日時 2021-03-14 14:59:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 525 ms / 2,000 ms
コード長 1,397 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 272,492 KB
最終ジャッジ日時 2024-11-06 04:56:33
合計ジャッジ時間 6,955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,396 KB
testcase_01 AC 38 ms
53,700 KB
testcase_02 AC 37 ms
53,036 KB
testcase_03 AC 45 ms
61,912 KB
testcase_04 AC 51 ms
67,824 KB
testcase_05 AC 51 ms
66,676 KB
testcase_06 AC 371 ms
272,488 KB
testcase_07 AC 365 ms
272,492 KB
testcase_08 AC 66 ms
73,552 KB
testcase_09 AC 168 ms
97,940 KB
testcase_10 AC 254 ms
115,600 KB
testcase_11 AC 277 ms
127,720 KB
testcase_12 AC 387 ms
151,144 KB
testcase_13 AC 387 ms
173,884 KB
testcase_14 AC 435 ms
195,740 KB
testcase_15 AC 473 ms
215,052 KB
testcase_16 AC 504 ms
233,292 KB
testcase_17 AC 525 ms
252,540 KB
testcase_18 AC 391 ms
173,800 KB
testcase_19 AC 393 ms
173,916 KB
testcase_20 AC 183 ms
127,820 KB
testcase_21 AC 69 ms
71,400 KB
testcase_22 AC 39 ms
52,468 KB
testcase_23 AC 40 ms
53,660 KB
testcase_24 AC 59 ms
67,264 KB
testcase_25 AC 57 ms
67,268 KB
testcase_26 AC 96 ms
82,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

n, c = LI()
pp = [II() for _ in range(n)]
t1, t2 = [], []
for _ in range(c):
    t, x = LI()
    if t == 1: t1.append(x)
    else: t2.append(x)

pp.sort(reverse=True)
t1.sort(reverse=True)
t2.sort(reverse=True)

ans=0
for _ in range(n-c):
    ans+=pp.pop()

def chmin(i,j,val):
    if val<dp[i][j]:dp[i][j]=val

# dp[j]...t1をj枚使った時の最小金額
dp=[[inf]*(len(t1)+1) for _ in range(len(pp)+1)]
dp[0][0]=0
for i,p in enumerate(pp):
    for j in range(min(i,len(t1)),-1,-1):
        pre=dp[i][j]
        # print(i,j)
        if t1 and j<len(t1):chmin(i+1,j+1,pre+max(0,p-t1[j]))
        if t2 and i-j<len(t2):chmin(i+1,j,pre+(100-t2[i-j])*p//100)
# p2D(dp)

print(ans+min(dp[-1]))
0