結果

問題 No.1522 Unfairness
ユーザー ああいいああいい
提出日時 2022-02-26 14:35:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 836 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 137,344 KB
最終ジャッジ日時 2024-07-04 10:45:08
合計ジャッジ時間 4,572 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 119 ms
92,800 KB
testcase_04 AC 59 ms
67,840 KB
testcase_05 AC 54 ms
65,792 KB
testcase_06 AC 46 ms
61,824 KB
testcase_07 AC 141 ms
92,020 KB
testcase_08 AC 142 ms
91,136 KB
testcase_09 AC 52 ms
63,616 KB
testcase_10 AC 68 ms
72,320 KB
testcase_11 AC 57 ms
67,328 KB
testcase_12 AC 95 ms
88,280 KB
testcase_13 AC 201 ms
114,128 KB
testcase_14 AC 58 ms
66,432 KB
testcase_15 AC 315 ms
136,960 KB
testcase_16 AC 313 ms
136,944 KB
testcase_17 AC 312 ms
137,344 KB
testcase_18 AC 310 ms
136,832 KB
testcase_19 AC 315 ms
136,704 KB
testcase_20 AC 289 ms
137,088 KB
testcase_21 AC 39 ms
52,096 KB
testcase_22 AC 39 ms
52,096 KB
testcase_23 AC 39 ms
52,352 KB
testcase_24 AC 51 ms
62,108 KB
testcase_25 AC 43 ms
58,368 KB
testcase_26 AC 51 ms
62,336 KB
testcase_27 AC 38 ms
52,196 KB
testcase_28 AC 42 ms
57,856 KB
testcase_29 AC 49 ms
61,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))
A.sort(reverse = True)

import sys
if N == 2:
    d = A[0] - A[1]
    if d <= M:
        print(A[0])
    else:
        print(0)
    exit()
    
inf = 10 ** 10
dp = [[0] * (M+1) for _ in range(N-1)]
if A[0] - A[1] <= M:
    dp[0][A[0]-A[1]] = A[0]
if A[1] - A[2] <= M:
    dp[1][A[1]-A[2]] = A[1]
for i in range(1,N-1):
    d = A[i] - A[i+1]
    for j in range(M+1):
        dp[i][j] = dp[i-1][j]
    if i == 1:
        if d <= M:
            dp[i][d] = max(dp[i][d],A[i])
        continue
    for j in range(M+1):
        if j + d <= M:
            dp[i][j+d] = max(dp[i][j+d],dp[i-2][j] + A[i])
        else:
            break
_max = 0
for j in range(M+1):
    if dp[-1][j] > _max:
        _max = dp[-1][j]
    if dp[-2][j] > _max:
        _max = dp[-2][j]
print(_max)
0