結果

問題 No.1522 Unfairness
ユーザー shotoyooshotoyoo
提出日時 2021-05-28 21:35:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 147,396 KB
最終ジャッジ日時 2024-11-19 06:12:51
合計ジャッジ時間 5,065 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,944 KB
testcase_01 AC 39 ms
52,128 KB
testcase_02 AC 42 ms
52,060 KB
testcase_03 AC 146 ms
93,296 KB
testcase_04 AC 95 ms
80,428 KB
testcase_05 AC 78 ms
70,308 KB
testcase_06 AC 60 ms
65,424 KB
testcase_07 AC 189 ms
103,836 KB
testcase_08 AC 193 ms
103,316 KB
testcase_09 AC 63 ms
66,684 KB
testcase_10 AC 106 ms
83,688 KB
testcase_11 AC 81 ms
72,232 KB
testcase_12 AC 133 ms
88,556 KB
testcase_13 AC 207 ms
114,816 KB
testcase_14 AC 83 ms
74,368 KB
testcase_15 AC 305 ms
147,176 KB
testcase_16 AC 306 ms
147,220 KB
testcase_17 AC 305 ms
147,208 KB
testcase_18 AC 308 ms
146,972 KB
testcase_19 AC 310 ms
147,396 KB
testcase_20 AC 281 ms
137,560 KB
testcase_21 AC 39 ms
51,892 KB
testcase_22 AC 39 ms
52,204 KB
testcase_23 AC 40 ms
52,592 KB
testcase_24 AC 83 ms
74,328 KB
testcase_25 AC 55 ms
61,860 KB
testcase_26 AC 80 ms
71,472 KB
testcase_27 AC 41 ms
51,804 KB
testcase_28 AC 50 ms
59,944 KB
testcase_29 AC 78 ms
72,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n,m = list(map(int, input().split()))
a = list(map(int, input().split()))
a.sort(reverse=1)
dp = [[0]*(m+1) for _ in range(n+1)]
def chmax(i,j,v):
    dp[i][j] = max(dp[i][j], v)
for i in range(n):
    for j in range(m+1):
        v = dp[i][j]
        if i+2<=n:
            nj = j+a[i]-a[i+1]
            if nj<=m:
                chmax(i+2, nj, v+a[i])
        chmax(i+1,j, v)
ans = max(dp[n])
print(ans)
0