結果

問題 No.1522 Unfairness
ユーザー H3PO4H3PO4
提出日時 2023-10-04 11:49:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 612 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 114,480 KB
最終ジャッジ日時 2024-07-26 14:22:03
合計ジャッジ時間 17,558 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 456 ms
44,316 KB
testcase_01 AC 470 ms
44,448 KB
testcase_02 AC 456 ms
44,700 KB
testcase_03 AC 484 ms
62,092 KB
testcase_04 AC 476 ms
48,996 KB
testcase_05 AC 474 ms
45,604 KB
testcase_06 AC 469 ms
44,068 KB
testcase_07 AC 493 ms
70,824 KB
testcase_08 AC 541 ms
70,420 KB
testcase_09 AC 457 ms
44,196 KB
testcase_10 AC 468 ms
51,308 KB
testcase_11 AC 458 ms
47,396 KB
testcase_12 AC 458 ms
56,224 KB
testcase_13 AC 499 ms
82,460 KB
testcase_14 AC 464 ms
47,520 KB
testcase_15 AC 535 ms
114,000 KB
testcase_16 AC 516 ms
114,000 KB
testcase_17 AC 513 ms
114,452 KB
testcase_18 AC 612 ms
114,480 KB
testcase_19 AC 507 ms
114,316 KB
testcase_20 AC 517 ms
113,928 KB
testcase_21 AC 458 ms
44,068 KB
testcase_22 AC 462 ms
44,196 KB
testcase_23 AC 459 ms
44,072 KB
testcase_24 AC 460 ms
44,068 KB
testcase_25 AC 457 ms
44,068 KB
testcase_26 AC 458 ms
44,328 KB
testcase_27 AC 461 ms
44,444 KB
testcase_28 AC 450 ms
44,188 KB
testcase_29 AC 456 ms
44,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, M = map(int, input().split())
A = list(map(int, input().split()))
A.sort(reverse=True)
dp = np.zeros((N + 1, M + 1), dtype=np.int64)

for i in range(N - 1):
    dp[i + 2] = dp[i + 1]
    diff = A[i] - A[i + 1]
    if diff > M:
        continue
    dp[i + 2, diff:] = np.maximum(dp[i, : M + 1 - diff] + A[i], dp[i + 2, diff:])

print(dp[N].max())
0