結果

問題 No.1430 Coup de Coupon
ユーザー tcltktcltk
提出日時 2021-06-26 07:07:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 1,154 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 90,280 KB
最終ジャッジ日時 2024-06-25 07:51:46
合計ジャッジ時間 7,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
86,732 KB
testcase_01 AC 120 ms
86,828 KB
testcase_02 AC 127 ms
86,808 KB
testcase_03 AC 133 ms
89,240 KB
testcase_04 AC 134 ms
89,504 KB
testcase_05 AC 134 ms
89,240 KB
testcase_06 AC 246 ms
89,804 KB
testcase_07 AC 240 ms
89,492 KB
testcase_08 AC 144 ms
89,640 KB
testcase_09 AC 217 ms
89,828 KB
testcase_10 AC 262 ms
89,816 KB
testcase_11 AC 292 ms
90,280 KB
testcase_12 AC 321 ms
89,940 KB
testcase_13 AC 340 ms
89,608 KB
testcase_14 AC 337 ms
89,864 KB
testcase_15 AC 330 ms
89,724 KB
testcase_16 AC 313 ms
89,588 KB
testcase_17 AC 278 ms
89,556 KB
testcase_18 AC 335 ms
89,788 KB
testcase_19 AC 327 ms
90,036 KB
testcase_20 AC 262 ms
89,608 KB
testcase_21 AC 143 ms
89,440 KB
testcase_22 AC 122 ms
86,520 KB
testcase_23 AC 125 ms
87,236 KB
testcase_24 AC 137 ms
89,152 KB
testcase_25 AC 139 ms
89,588 KB
testcase_26 AC 154 ms
89,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """1 2
# 2000
# 1 500
# 2 30
# """
# sys.stdin = io.StringIO(_INPUT)

N, C = map(int, input().split())
P = [int(input()) for _ in range(N)]
Coupons1 = []
Coupons2 = []
for _ in range(C):
    t, x = map(int, input().split())
    if t == 1:
        Coupons1.append(x)
    else:
        Coupons2.append(x)
P.sort(reverse=True)
Coupons1.sort(reverse=True)
Coupons2.sort(reverse=True)
C1 = len(Coupons1)
C2 = len(Coupons2)

dp = [10**10] * (C1+1)
dp[0] = 0
for i in range(min(N, C)):

    dp1 = [10**10] * (C1+1)

    for k in range(C1+1):
        if dp[k] < 10**10:

            if k < C1:
                # Coupon1 を使う
                dp1[k+1] = min(dp1[k+1], dp[k] + max(P[i]-Coupons1[k], 0))

            if 0 <= i-k < C2:
                dp1[k] = min(dp1[k], dp[k] + P[i] * (100-Coupons2[i-k])//100)

    dp = dp1

if C < N:
    ans = min(dp) + sum(P[C:])
else:
    ans = min(dp)
print(ans)
0