結果

問題 No.1522 Unfairness
ユーザー tktk_snsntktk_snsn
提出日時 2021-05-29 10:53:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 147,052 KB
最終ジャッジ日時 2024-11-19 06:15:13
合計ジャッジ時間 4,413 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,308 KB
testcase_01 AC 36 ms
52,952 KB
testcase_02 AC 34 ms
52,756 KB
testcase_03 AC 118 ms
94,444 KB
testcase_04 AC 59 ms
72,004 KB
testcase_05 AC 57 ms
66,952 KB
testcase_06 AC 45 ms
63,464 KB
testcase_07 AC 151 ms
103,368 KB
testcase_08 AC 154 ms
103,252 KB
testcase_09 AC 50 ms
66,148 KB
testcase_10 AC 79 ms
83,940 KB
testcase_11 AC 59 ms
70,324 KB
testcase_12 AC 96 ms
88,132 KB
testcase_13 AC 193 ms
114,788 KB
testcase_14 AC 55 ms
69,292 KB
testcase_15 AC 315 ms
147,048 KB
testcase_16 AC 317 ms
147,052 KB
testcase_17 AC 317 ms
146,788 KB
testcase_18 AC 321 ms
146,984 KB
testcase_19 AC 311 ms
146,756 KB
testcase_20 AC 272 ms
146,832 KB
testcase_21 AC 35 ms
52,316 KB
testcase_22 AC 34 ms
53,856 KB
testcase_23 AC 34 ms
52,632 KB
testcase_24 AC 48 ms
64,520 KB
testcase_25 AC 38 ms
59,156 KB
testcase_26 AC 48 ms
63,612 KB
testcase_27 AC 35 ms
53,320 KB
testcase_28 AC 39 ms
59,924 KB
testcase_29 AC 49 ms
62,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, P = map(int, input().split())
A = list(map(int, input().split()))
A.sort()

# dp[i,j]: i番目の要素を取る、不平等さj -> Oの最大値
#隣り合う2つをO, Eとするのがベスト
dp = [[0] * (P + 1) for _ in range(N + 2)]
for i in range(1, N):
    get = A[i]
    pena = A[i] - A[i-1]
    for j in range(P+1):
        dp[i][j] = max(dp[i][j], dp[i-1][j])
    for j in reversed(range(pena, P+1)):
        dp[i+1][j] = max(dp[i+1][j], dp[i-1][j-pena] + get)
for i in range(P+1):
    dp[N][i] = max(dp[N][i], dp[N-1][i])

print(max(dp[N]))
0