結果

問題 No.1430 Coup de Coupon
ユーザー tamatotamato
提出日時 2021-03-14 14:44:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 698 ms / 2,000 ms
コード長 1,037 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 272,744 KB
最終ジャッジ日時 2024-11-06 04:41:46
合計ジャッジ時間 8,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,040 KB
testcase_01 AC 38 ms
53,140 KB
testcase_02 AC 39 ms
52,712 KB
testcase_03 AC 55 ms
68,740 KB
testcase_04 AC 50 ms
65,344 KB
testcase_05 AC 46 ms
63,312 KB
testcase_06 AC 595 ms
272,744 KB
testcase_07 AC 601 ms
272,620 KB
testcase_08 AC 57 ms
70,060 KB
testcase_09 AC 171 ms
97,552 KB
testcase_10 AC 236 ms
107,008 KB
testcase_11 AC 311 ms
130,764 KB
testcase_12 AC 384 ms
152,828 KB
testcase_13 AC 479 ms
175,688 KB
testcase_14 AC 536 ms
195,544 KB
testcase_15 AC 604 ms
215,256 KB
testcase_16 AC 658 ms
233,344 KB
testcase_17 AC 698 ms
245,456 KB
testcase_18 AC 506 ms
174,344 KB
testcase_19 AC 517 ms
176,260 KB
testcase_20 AC 294 ms
128,364 KB
testcase_21 AC 85 ms
79,640 KB
testcase_22 AC 37 ms
53,404 KB
testcase_23 AC 46 ms
60,972 KB
testcase_24 AC 53 ms
65,092 KB
testcase_25 AC 66 ms
73,512 KB
testcase_26 AC 101 ms
82,576 KB
権限があれば一括ダウンロードができます

ソースコード

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 0 <= 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