結果

問題 No.1522 Unfairness
ユーザー convexineqconvexineq
提出日時 2021-05-28 22:11:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 427 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 137,072 KB
最終ジャッジ日時 2024-11-19 06:13:54
合計ジャッジ時間 5,490 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,816 KB
testcase_01 AC 40 ms
53,456 KB
testcase_02 AC 40 ms
53,612 KB
testcase_03 AC 149 ms
93,236 KB
testcase_04 AC 72 ms
72,184 KB
testcase_05 AC 62 ms
68,036 KB
testcase_06 AC 52 ms
64,864 KB
testcase_07 AC 163 ms
91,624 KB
testcase_08 AC 164 ms
90,864 KB
testcase_09 AC 55 ms
64,148 KB
testcase_10 AC 94 ms
83,492 KB
testcase_11 AC 65 ms
69,516 KB
testcase_12 AC 109 ms
88,532 KB
testcase_13 AC 257 ms
114,164 KB
testcase_14 AC 64 ms
69,456 KB
testcase_15 AC 424 ms
137,072 KB
testcase_16 AC 423 ms
136,756 KB
testcase_17 AC 427 ms
136,804 KB
testcase_18 AC 424 ms
136,876 KB
testcase_19 AC 426 ms
137,036 KB
testcase_20 AC 335 ms
136,760 KB
testcase_21 AC 38 ms
52,336 KB
testcase_22 AC 40 ms
52,764 KB
testcase_23 AC 40 ms
53,368 KB
testcase_24 AC 59 ms
65,760 KB
testcase_25 AC 43 ms
58,916 KB
testcase_26 AC 54 ms
63,784 KB
testcase_27 AC 38 ms
53,688 KB
testcase_28 AC 43 ms
58,040 KB
testcase_29 AC 51 ms
62,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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