結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,004 KB
testcase_01 AC 37 ms
52,900 KB
testcase_02 AC 38 ms
53,420 KB
testcase_03 AC 108 ms
92,776 KB
testcase_04 AC 60 ms
68,624 KB
testcase_05 AC 55 ms
67,252 KB
testcase_06 AC 46 ms
63,840 KB
testcase_07 AC 125 ms
91,964 KB
testcase_08 AC 139 ms
91,220 KB
testcase_09 AC 51 ms
65,084 KB
testcase_10 AC 68 ms
72,840 KB
testcase_11 AC 55 ms
67,888 KB
testcase_12 AC 95 ms
87,976 KB
testcase_13 AC 167 ms
114,132 KB
testcase_14 AC 56 ms
67,624 KB
testcase_15 AC 249 ms
136,984 KB
testcase_16 AC 253 ms
136,936 KB
testcase_17 AC 249 ms
137,172 KB
testcase_18 AC 255 ms
137,108 KB
testcase_19 AC 248 ms
137,032 KB
testcase_20 AC 288 ms
136,980 KB
testcase_21 WA -
testcase_22 AC 38 ms
53,212 KB
testcase_23 AC 38 ms
52,996 KB
testcase_24 AC 52 ms
63,796 KB
testcase_25 AC 41 ms
58,856 KB
testcase_26 AC 50 ms
62,980 KB
testcase_27 AC 38 ms
52,348 KB
testcase_28 AC 41 ms
58,160 KB
testcase_29 AC 51 ms
62,852 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])
    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