結果
問題 | No.1430 Coup de Coupon |
ユーザー | rlangevin |
提出日時 | 2023-04-18 12:19:53 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 690 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 82,312 KB |
実行使用メモリ | 78,112 KB |
最終ジャッジ日時 | 2024-10-13 10:39:46 |
合計ジャッジ時間 | 4,607 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,016 KB |
testcase_01 | AC | 36 ms
53,504 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
ソースコード
import sys readline = sys.stdin.readline N, C = map(int, readline().split()) P = [0] * N for i in range(N): P[i] = int(readline()) X1, X2 = [], [] for i in range(C): T, X = map(int, readline().split()) if T == 1: X1.append(X) else: X2.append(X) C1, C2 = len(X1), len(X2) X1.sort(reverse=True) X2.sort(reverse=True) inf = 10 ** 18 pre = [-inf] * C pre[0] = 0 for i in range(min(N, C)): dp = [-inf] * C for j in range(C1): dp[j + 1] = max(dp[j + 1], pre[j] + min(P[i], X1[j])) j2 = i - j if j2 >= C2: continue dp[j] = max(dp[j], pre[j] + P[i]//100 * X2[j2]) dp, pre = pre, dp print(sum(P) - max(pre))