結果

問題 No.1522 Unfairness
ユーザー googol_S0googol_S0
提出日時 2021-05-28 20:35:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 136,520 KB
最終ジャッジ日時 2024-11-19 06:08:31
合計ジャッジ時間 5,005 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,732 KB
testcase_01 AC 35 ms
52,260 KB
testcase_02 AC 36 ms
52,880 KB
testcase_03 AC 139 ms
92,844 KB
testcase_04 AC 70 ms
71,060 KB
testcase_05 AC 60 ms
67,880 KB
testcase_06 AC 48 ms
63,356 KB
testcase_07 AC 169 ms
91,172 KB
testcase_08 AC 160 ms
90,512 KB
testcase_09 AC 53 ms
65,728 KB
testcase_10 AC 93 ms
83,988 KB
testcase_11 AC 63 ms
68,668 KB
testcase_12 AC 116 ms
88,332 KB
testcase_13 AC 209 ms
113,380 KB
testcase_14 AC 62 ms
68,768 KB
testcase_15 AC 322 ms
136,372 KB
testcase_16 AC 318 ms
136,520 KB
testcase_17 AC 336 ms
136,400 KB
testcase_18 AC 325 ms
136,460 KB
testcase_19 AC 319 ms
136,132 KB
testcase_20 AC 256 ms
136,312 KB
testcase_21 AC 34 ms
52,804 KB
testcase_22 AC 34 ms
52,396 KB
testcase_23 AC 36 ms
53,764 KB
testcase_24 AC 56 ms
67,276 KB
testcase_25 AC 39 ms
59,976 KB
testcase_26 AC 48 ms
64,300 KB
testcase_27 AC 35 ms
53,024 KB
testcase_28 AC 37 ms
59,580 KB
testcase_29 AC 51 ms
65,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=sorted(map(int,input().split()))
W=[0]*(N-1)
V=[0]*(N-1)
for i in range(N-1):
  W[i]=A[i+1]-A[i]
  V[i]=A[i+1]
INF=-(10**12)
DP=[[INF]*(M+1) for i in range(N)]
DP[0][0]=0
for i in range(N-1):
  for j in range(M+1):
    DP[i+1][j]=max(DP[i+1][j],DP[i][j])
    if j+W[i]<=M:
      DP[min(N-1,i+2)][j+W[i]]=max(DP[min(N-1,i+2)][j+W[i]],DP[i][j]+V[i])
print(max(DP[-1]))
0