結果

問題 No.2423 Merge Stones
ユーザー t98slidert98slider
提出日時 2023-08-14 21:26:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 750 ms / 4,000 ms
コード長 1,058 bytes
コンパイル時間 1,523 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 82,520 KB
最終ジャッジ日時 2024-11-22 22:22:45
合計ジャッジ時間 43,165 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,820 KB
testcase_01 AC 48 ms
62,412 KB
testcase_02 AC 45 ms
60,332 KB
testcase_03 AC 46 ms
61,056 KB
testcase_04 AC 39 ms
52,524 KB
testcase_05 AC 44 ms
59,420 KB
testcase_06 AC 46 ms
62,600 KB
testcase_07 AC 44 ms
59,964 KB
testcase_08 AC 44 ms
59,584 KB
testcase_09 AC 39 ms
54,092 KB
testcase_10 AC 46 ms
62,004 KB
testcase_11 AC 452 ms
82,228 KB
testcase_12 AC 711 ms
73,852 KB
testcase_13 AC 428 ms
81,788 KB
testcase_14 AC 697 ms
73,480 KB
testcase_15 AC 729 ms
73,160 KB
testcase_16 AC 705 ms
82,188 KB
testcase_17 AC 717 ms
74,264 KB
testcase_18 AC 661 ms
82,396 KB
testcase_19 AC 715 ms
73,124 KB
testcase_20 AC 705 ms
73,360 KB
testcase_21 AC 655 ms
82,304 KB
testcase_22 AC 742 ms
74,440 KB
testcase_23 AC 726 ms
73,564 KB
testcase_24 AC 716 ms
74,040 KB
testcase_25 AC 718 ms
73,640 KB
testcase_26 AC 703 ms
73,408 KB
testcase_27 AC 725 ms
73,316 KB
testcase_28 AC 644 ms
82,260 KB
testcase_29 AC 702 ms
82,392 KB
testcase_30 AC 703 ms
73,332 KB
testcase_31 AC 709 ms
74,024 KB
testcase_32 AC 642 ms
82,088 KB
testcase_33 AC 750 ms
73,656 KB
testcase_34 AC 709 ms
74,900 KB
testcase_35 AC 722 ms
73,464 KB
testcase_36 AC 712 ms
74,656 KB
testcase_37 AC 713 ms
73,352 KB
testcase_38 AC 721 ms
73,876 KB
testcase_39 AC 706 ms
82,204 KB
testcase_40 AC 675 ms
82,432 KB
testcase_41 AC 699 ms
74,008 KB
testcase_42 AC 610 ms
82,120 KB
testcase_43 AC 712 ms
73,176 KB
testcase_44 AC 648 ms
82,148 KB
testcase_45 AC 709 ms
73,580 KB
testcase_46 AC 707 ms
73,348 KB
testcase_47 AC 718 ms
74,608 KB
testcase_48 AC 718 ms
74,484 KB
testcase_49 AC 715 ms
74,432 KB
testcase_50 AC 702 ms
73,292 KB
testcase_51 AC 448 ms
82,056 KB
testcase_52 AC 451 ms
82,048 KB
testcase_53 AC 452 ms
82,272 KB
testcase_54 AC 457 ms
82,520 KB
testcase_55 AC 633 ms
82,200 KB
testcase_56 AC 613 ms
82,232 KB
testcase_57 AC 570 ms
82,080 KB
testcase_58 AC 434 ms
82,328 KB
testcase_59 AC 564 ms
82,288 KB
testcase_60 AC 424 ms
82,396 KB
testcase_61 AC 443 ms
82,140 KB
testcase_62 AC 444 ms
82,260 KB
testcase_63 AC 443 ms
82,216 KB
testcase_64 AC 442 ms
82,292 KB
testcase_65 AC 446 ms
82,344 KB
testcase_66 AC 443 ms
82,264 KB
testcase_67 AC 445 ms
82,244 KB
testcase_68 AC 450 ms
82,408 KB
testcase_69 AC 448 ms
82,428 KB
testcase_70 AC 453 ms
82,268 KB
testcase_71 AC 444 ms
82,144 KB
testcase_72 AC 443 ms
82,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
import itertools
N, K = map(int, stdin.readline().split())
A = list(map(int, stdin.readline().split()))
C = list(map(int, stdin.readline().split()))
dp = [[0] * (2 * N + 1) for _ in range(2 * N)]
dp2 = [[0] * (2 * N + 1) for _ in range(2 * N)]
s = [0] + list(itertools.accumulate(A + A))
ans = max(A)

for i in range(N):
    C[i] -= 1
    dp[i][i + 1] |= 1 << C[i]
    dp2[i][i + 1] = dp[i][i + 1]
    for j in range(1, K + 1):
        dp2[i][i + 1] |= dp[i][i + 1] >> j
        dp2[i][i + 1] |= dp[i][i + 1] << j
    dp[i + N][i + 1 + N] = dp[i][i + 1]
    dp2[i + N][i + 1 + N] = dp2[i][i + 1]

for Len in range(2, N + 1):
    for l in range(2 * N - Len):
        r = l + Len
        for m in range(l, r):
            dp[l][r] |= dp[l][m] & dp2[m][r]
            dp[l][r] |= dp2[l][m] & dp[m][r]
        
        if dp[l][r]:
            ans = max(ans, s[r] - s[l])
            dp2[l][r] = dp[l][r]
            for j in range(1, K + 1):
                dp2[l][r] |= dp[l][r] >> j
                dp2[l][r] |= dp[l][r] << j

print(ans)
0