結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
86,752 KB
testcase_01 AC 129 ms
86,532 KB
testcase_02 AC 123 ms
86,644 KB
testcase_03 AC 137 ms
89,612 KB
testcase_04 AC 139 ms
89,676 KB
testcase_05 AC 139 ms
89,232 KB
testcase_06 AC 1,387 ms
285,544 KB
testcase_07 AC 1,609 ms
284,556 KB
testcase_08 AC 147 ms
89,484 KB
testcase_09 AC 342 ms
141,764 KB
testcase_10 AC 491 ms
179,464 KB
testcase_11 AC 654 ms
219,460 KB
testcase_12 AC 798 ms
251,864 KB
testcase_13 AC 1,064 ms
286,888 KB
testcase_14 AC 1,275 ms
302,800 KB
testcase_15 AC 1,395 ms
306,660 KB
testcase_16 AC 1,492 ms
294,404 KB
testcase_17 AC 1,626 ms
291,276 KB
testcase_18 AC 1,065 ms
285,900 KB
testcase_19 AC 1,153 ms
289,248 KB
testcase_20 AC 614 ms
187,168 KB
testcase_21 AC 181 ms
97,024 KB
testcase_22 AC 122 ms
86,800 KB
testcase_23 AC 133 ms
89,096 KB
testcase_24 AC 141 ms
89,348 KB
testcase_25 AC 149 ms
89,572 KB
testcase_26 AC 211 ms
97,616 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**20] * (C1+1) for _ in range(N+1)]
dp[0][0] = 0
for i in range(N):
    for k in range(C1+1):

        if C <= i:
            dp[i+1][k] = dp[i][k] + P[i]
        
        else:
            # Coupon1: k枚使った
            # Coupon2: min(i-k, C2) 枚使った

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

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

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