結果

問題 No.2423 Merge Stones
ユーザー t98slidert98slider
提出日時 2023-08-14 21:54:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 780 ms / 4,000 ms
コード長 952 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 82,176 KB
最終ジャッジ日時 2024-11-22 22:52:17
合計ジャッジ時間 43,772 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,864 KB
testcase_01 AC 58 ms
61,184 KB
testcase_02 AC 47 ms
59,520 KB
testcase_03 AC 47 ms
59,392 KB
testcase_04 AC 42 ms
52,568 KB
testcase_05 AC 47 ms
59,520 KB
testcase_06 AC 49 ms
60,288 KB
testcase_07 AC 47 ms
59,264 KB
testcase_08 AC 45 ms
59,264 KB
testcase_09 AC 41 ms
52,480 KB
testcase_10 AC 49 ms
60,800 KB
testcase_11 AC 459 ms
81,536 KB
testcase_12 AC 751 ms
72,448 KB
testcase_13 AC 471 ms
81,792 KB
testcase_14 AC 732 ms
73,216 KB
testcase_15 AC 727 ms
72,320 KB
testcase_16 AC 769 ms
72,832 KB
testcase_17 AC 732 ms
72,960 KB
testcase_18 AC 736 ms
72,960 KB
testcase_19 AC 734 ms
72,960 KB
testcase_20 AC 746 ms
73,088 KB
testcase_21 AC 741 ms
72,576 KB
testcase_22 AC 720 ms
73,344 KB
testcase_23 AC 730 ms
72,192 KB
testcase_24 AC 720 ms
72,960 KB
testcase_25 AC 727 ms
72,704 KB
testcase_26 AC 727 ms
72,832 KB
testcase_27 AC 732 ms
72,960 KB
testcase_28 AC 725 ms
72,320 KB
testcase_29 AC 732 ms
72,576 KB
testcase_30 AC 727 ms
72,576 KB
testcase_31 AC 780 ms
72,960 KB
testcase_32 AC 723 ms
74,484 KB
testcase_33 AC 722 ms
72,960 KB
testcase_34 AC 723 ms
72,192 KB
testcase_35 AC 723 ms
72,960 KB
testcase_36 AC 727 ms
72,576 KB
testcase_37 AC 729 ms
73,088 KB
testcase_38 AC 725 ms
72,832 KB
testcase_39 AC 747 ms
73,984 KB
testcase_40 AC 749 ms
72,192 KB
testcase_41 AC 763 ms
72,704 KB
testcase_42 AC 750 ms
73,856 KB
testcase_43 AC 729 ms
72,448 KB
testcase_44 AC 733 ms
73,088 KB
testcase_45 AC 730 ms
73,112 KB
testcase_46 AC 732 ms
73,344 KB
testcase_47 AC 722 ms
73,088 KB
testcase_48 AC 777 ms
72,576 KB
testcase_49 AC 772 ms
72,704 KB
testcase_50 AC 727 ms
72,832 KB
testcase_51 AC 443 ms
82,024 KB
testcase_52 AC 452 ms
81,664 KB
testcase_53 AC 652 ms
82,156 KB
testcase_54 AC 452 ms
81,536 KB
testcase_55 AC 458 ms
81,664 KB
testcase_56 AC 728 ms
75,556 KB
testcase_57 AC 459 ms
82,168 KB
testcase_58 AC 448 ms
82,144 KB
testcase_59 AC 746 ms
74,240 KB
testcase_60 AC 676 ms
81,792 KB
testcase_61 AC 454 ms
82,176 KB
testcase_62 AC 450 ms
82,048 KB
testcase_63 AC 451 ms
81,536 KB
testcase_64 AC 447 ms
82,048 KB
testcase_65 AC 446 ms
81,408 KB
testcase_66 AC 449 ms
82,176 KB
testcase_67 AC 449 ms
81,920 KB
testcase_68 AC 447 ms
81,920 KB
testcase_69 AC 452 ms
81,792 KB
testcase_70 AC 455 ms
82,048 KB
testcase_71 AC 448 ms
82,048 KB
testcase_72 AC 446 ms
81,792 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)
coef = (1 << (K + 1)) - 1
for i in range(N):
    C[i] -= 1
    dp[i][i + 1] |= 1 << C[i]
    dp2[i][i + 1] = coef << C[i]
    dp2[i][i + 1] |= dp2[i][i + 1] >> K
    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])
            for j in range(K + 1): dp2[l][r] |= dp[l][r] << j
            dp2[l][r] |= dp2[l][r] >> K

print(ans)
0