結果

問題 No.1522 Unfairness
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-05-28 21:16:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 147,232 KB
最終ジャッジ日時 2024-11-19 06:09:18
合計ジャッジ時間 4,950 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,248 KB
testcase_01 AC 35 ms
54,056 KB
testcase_02 AC 34 ms
53,688 KB
testcase_03 AC 125 ms
93,000 KB
testcase_04 AC 63 ms
72,896 KB
testcase_05 AC 60 ms
69,688 KB
testcase_06 AC 49 ms
67,604 KB
testcase_07 AC 171 ms
103,508 KB
testcase_08 AC 170 ms
103,356 KB
testcase_09 AC 53 ms
67,676 KB
testcase_10 AC 87 ms
83,888 KB
testcase_11 AC 60 ms
69,556 KB
testcase_12 AC 101 ms
88,360 KB
testcase_13 AC 222 ms
115,056 KB
testcase_14 AC 58 ms
69,172 KB
testcase_15 AC 371 ms
147,036 KB
testcase_16 AC 362 ms
146,916 KB
testcase_17 AC 366 ms
146,912 KB
testcase_18 AC 360 ms
146,976 KB
testcase_19 AC 366 ms
147,232 KB
testcase_20 AC 237 ms
137,396 KB
testcase_21 AC 35 ms
53,672 KB
testcase_22 AC 34 ms
52,684 KB
testcase_23 AC 36 ms
53,980 KB
testcase_24 AC 50 ms
65,980 KB
testcase_25 AC 40 ms
59,152 KB
testcase_26 AC 49 ms
64,064 KB
testcase_27 AC 35 ms
51,816 KB
testcase_28 AC 38 ms
58,704 KB
testcase_29 AC 49 ms
65,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

大きい順にソートする
不平等さはなるべく小さくしたい
Eが無いのは損にしかならない
Oを取ると直後にEを取る
でOK

"""

from sys import stdin
import sys

N,M = map(int,stdin.readline().split())

A = list(map(int,stdin.readline().split()))

A.sort()
A.reverse()
A.append(0)

dp = [[0] * (M+1) for i in range(N+2)]
ans = 0

#print (A)
for i in range(N-1):

    pl = A[i]-A[i+1]
    for j in range(M+1):
        dp[i+1][j] = max(dp[i+1][j] , dp[i][j])
        if j + pl <= M:
            dp[i+2][j+pl] = max(dp[i+2][j+pl] , dp[i][j] + A[i])

#print (dp)
for i in range(N+2):
    ans = max(ans,max(dp[i]))

print (ans)
0