結果

問題 No.1430 Coup de Coupon
ユーザー tamatotamato
提出日時 2021-03-14 14:43:42
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,032 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 274,116 KB
最終ジャッジ日時 2024-11-06 04:40:41
合計ジャッジ時間 5,686 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,292 KB
testcase_01 AC 40 ms
53,208 KB
testcase_02 RE -
testcase_03 AC 58 ms
68,216 KB
testcase_04 RE -
testcase_05 AC 47 ms
63,240 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 58 ms
69,864 KB
testcase_09 AC 187 ms
97,956 KB
testcase_10 AC 259 ms
107,484 KB
testcase_11 AC 349 ms
130,980 KB
testcase_12 AC 447 ms
152,948 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 579 ms
175,100 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 93 ms
79,484 KB
testcase_22 AC 40 ms
54,148 KB
testcase_23 AC 49 ms
62,444 KB
testcase_24 RE -
testcase_25 AC 70 ms
73,664 KB
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
inf = 10**18


def main():
    import sys
    input = sys.stdin.readline

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

    if len(C1) + len(C2) < N:
        for _ in range(N - M):
            C2.append(0)
        M = N

    dp = [[inf] * (len(C1) + 1) for _ in range(N+1)]
    dp[0][0] = 0
    for i in range(N):
        p = P[i]
        for j in range(len(C1) + 1):
            # use C1
            if j != len(C1):
                dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j] + max(0, p - C1[j]))
            # use C2
            if i-j < len(C2):
                dp[i+1][j] = min(dp[i+1][j], dp[i][j] + p * (100 - C2[i - j]) // 100)
    print(min(dp[-1]))


if __name__ == '__main__':
    main()
0