結果

問題 No.1522 Unfairness
ユーザー ああいいああいい
提出日時 2022-02-26 14:33:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 766 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 137,140 KB
最終ジャッジ日時 2024-07-04 10:42:51
合計ジャッジ時間 4,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,552 KB
testcase_01 AC 37 ms
53,232 KB
testcase_02 AC 36 ms
52,348 KB
testcase_03 AC 111 ms
92,952 KB
testcase_04 AC 59 ms
68,256 KB
testcase_05 AC 53 ms
66,684 KB
testcase_06 AC 45 ms
62,688 KB
testcase_07 AC 141 ms
91,708 KB
testcase_08 AC 136 ms
91,028 KB
testcase_09 AC 49 ms
64,344 KB
testcase_10 WA -
testcase_11 AC 56 ms
67,816 KB
testcase_12 AC 91 ms
88,208 KB
testcase_13 AC 186 ms
114,140 KB
testcase_14 AC 54 ms
68,156 KB
testcase_15 AC 323 ms
137,032 KB
testcase_16 WA -
testcase_17 AC 316 ms
137,012 KB
testcase_18 AC 320 ms
136,988 KB
testcase_19 AC 328 ms
136,792 KB
testcase_20 AC 282 ms
137,140 KB
testcase_21 AC 36 ms
53,196 KB
testcase_22 AC 36 ms
53,824 KB
testcase_23 AC 39 ms
53,152 KB
testcase_24 AC 50 ms
63,348 KB
testcase_25 AC 40 ms
58,560 KB
testcase_26 AC 46 ms
63,764 KB
testcase_27 AC 36 ms
53,804 KB
testcase_28 AC 40 ms
58,516 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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: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