結果

問題 No.1522 Unfairness
ユーザー nasubi24nasubi24
提出日時 2021-05-28 22:54:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-11-19 06:15:04
合計ジャッジ時間 4,131 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,980 KB
testcase_01 AC 38 ms
54,252 KB
testcase_02 AC 38 ms
54,180 KB
testcase_03 AC 117 ms
76,940 KB
testcase_04 AC 76 ms
76,620 KB
testcase_05 AC 61 ms
71,216 KB
testcase_06 AC 62 ms
70,560 KB
testcase_07 AC 146 ms
76,864 KB
testcase_08 AC 137 ms
76,648 KB
testcase_09 AC 58 ms
69,772 KB
testcase_10 AC 86 ms
76,544 KB
testcase_11 AC 63 ms
73,808 KB
testcase_12 AC 96 ms
76,660 KB
testcase_13 AC 173 ms
76,728 KB
testcase_14 AC 64 ms
74,048 KB
testcase_15 AC 246 ms
77,064 KB
testcase_16 AC 250 ms
77,032 KB
testcase_17 AC 244 ms
76,764 KB
testcase_18 AC 248 ms
77,048 KB
testcase_19 AC 245 ms
77,312 KB
testcase_20 AC 126 ms
77,016 KB
testcase_21 AC 41 ms
54,876 KB
testcase_22 AC 39 ms
54,260 KB
testcase_23 AC 40 ms
54,724 KB
testcase_24 AC 50 ms
63,656 KB
testcase_25 AC 47 ms
60,324 KB
testcase_26 AC 46 ms
62,644 KB
testcase_27 AC 38 ms
54,916 KB
testcase_28 AC 43 ms
60,608 KB
testcase_29 AC 47 ms
62,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
n,m=map(int,input().split())
a=list(map(int,input().split()))
a.sort(reverse=True)
dp1=[-1]*(m+2)
dp1[0]=0
dp2=[-1]*(m+2)
dp2[0]=0
dp2[min(m+1,a[0]-a[1])]=a[0]
for i in range(1,n-1):
    dp3=[-1]*(m+2)
    for j in range(m+1):
        if dp1[j]!=-1:
            dp3[min(m+1,a[i]-a[i+1]+j)]=max(dp3[min(m+1,a[i]-a[i+1]+j)],a[i]+dp1[j])
    dp1=copy.copy(dp2)
    for j in range(m+1):
        dp2[j]=max(dp2[j],dp3[j])
print(max(dp2[:m+1]))
0