結果

問題 No.1522 Unfairness
ユーザー H3PO4H3PO4
提出日時 2023-10-04 11:42:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 437 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 64,032 KB
最終ジャッジ日時 2024-07-26 14:21:16
合計ジャッジ時間 13,512 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,256 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 1,708 ms
32,768 KB
testcase_04 AC 399 ms
16,256 KB
testcase_05 AC 143 ms
12,672 KB
testcase_06 AC 36 ms
11,264 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 71 ms
11,648 KB
testcase_10 AC 620 ms
19,200 KB
testcase_11 AC 281 ms
14,720 KB
testcase_12 AC 1,035 ms
25,088 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

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