結果

問題 No.1522 Unfairness
ユーザー H3PO4H3PO4
提出日時 2023-10-04 11:42:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 137,216 KB
最終ジャッジ日時 2024-07-26 14:21:21
合計ジャッジ時間 4,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 124 ms
92,928 KB
testcase_04 AC 68 ms
67,456 KB
testcase_05 AC 62 ms
65,920 KB
testcase_06 AC 53 ms
63,360 KB
testcase_07 AC 165 ms
92,100 KB
testcase_08 AC 164 ms
91,124 KB
testcase_09 AC 59 ms
64,512 KB
testcase_10 AC 74 ms
71,808 KB
testcase_11 AC 61 ms
66,176 KB
testcase_12 AC 108 ms
87,936 KB
testcase_13 AC 187 ms
114,688 KB
testcase_14 AC 65 ms
67,200 KB
testcase_15 AC 273 ms
137,088 KB
testcase_16 AC 275 ms
137,072 KB
testcase_17 AC 271 ms
136,832 KB
testcase_18 AC 276 ms
136,960 KB
testcase_19 AC 275 ms
137,216 KB
testcase_20 AC 325 ms
137,216 KB
testcase_21 AC 39 ms
51,968 KB
testcase_22 AC 40 ms
52,096 KB
testcase_23 AC 40 ms
52,644 KB
testcase_24 AC 59 ms
64,000 KB
testcase_25 AC 47 ms
58,368 KB
testcase_26 AC 56 ms
62,592 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 45 ms
58,556 KB
testcase_29 AC 57 ms
62,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
A.sort(reverse=True)
dp = [[0] * (M + 1) for _ in range(N + 1)]
for i in range(N - 1):
    for m in range(M + 1):
        dp[i + 2][m] = dp[i + 1][m]
    for m in range(M + 1):
        new_m = m + A[i] - A[i + 1]
        if new_m > M:
            continue
        if dp[i + 2][new_m] < dp[i][m] + A[i]:
            dp[i + 2][new_m] = dp[i][m] + A[i]
print(max(dp[N]))
0