結果

問題 No.2423 Merge Stones
ユーザー t98slidert98slider
提出日時 2023-08-14 21:54:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 748 ms / 4,000 ms
コード長 952 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 82,484 KB
最終ジャッジ日時 2024-05-02 10:00:26
合計ジャッジ時間 38,502 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 49 ms
60,928 KB
testcase_02 AC 45 ms
59,648 KB
testcase_03 AC 46 ms
60,288 KB
testcase_04 AC 38 ms
52,864 KB
testcase_05 AC 44 ms
59,136 KB
testcase_06 AC 45 ms
60,288 KB
testcase_07 AC 44 ms
59,136 KB
testcase_08 AC 40 ms
59,136 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 45 ms
60,800 KB
testcase_11 AC 418 ms
81,920 KB
testcase_12 AC 683 ms
72,960 KB
testcase_13 AC 430 ms
81,920 KB
testcase_14 AC 662 ms
72,704 KB
testcase_15 AC 659 ms
73,216 KB
testcase_16 AC 653 ms
73,088 KB
testcase_17 AC 668 ms
72,704 KB
testcase_18 AC 672 ms
72,960 KB
testcase_19 AC 660 ms
73,216 KB
testcase_20 AC 665 ms
73,088 KB
testcase_21 AC 661 ms
72,576 KB
testcase_22 AC 658 ms
72,960 KB
testcase_23 AC 658 ms
72,960 KB
testcase_24 AC 660 ms
72,576 KB
testcase_25 AC 658 ms
72,704 KB
testcase_26 AC 664 ms
72,832 KB
testcase_27 AC 664 ms
72,960 KB
testcase_28 AC 668 ms
72,932 KB
testcase_29 AC 668 ms
72,960 KB
testcase_30 AC 662 ms
72,576 KB
testcase_31 AC 651 ms
73,088 KB
testcase_32 AC 651 ms
74,496 KB
testcase_33 AC 653 ms
72,576 KB
testcase_34 AC 676 ms
72,960 KB
testcase_35 AC 655 ms
72,988 KB
testcase_36 AC 656 ms
72,540 KB
testcase_37 AC 645 ms
73,088 KB
testcase_38 AC 660 ms
73,088 KB
testcase_39 AC 748 ms
74,112 KB
testcase_40 AC 694 ms
73,088 KB
testcase_41 AC 665 ms
72,448 KB
testcase_42 AC 659 ms
74,752 KB
testcase_43 AC 660 ms
72,832 KB
testcase_44 AC 665 ms
72,704 KB
testcase_45 AC 667 ms
72,832 KB
testcase_46 AC 661 ms
72,960 KB
testcase_47 AC 662 ms
73,088 KB
testcase_48 AC 675 ms
72,960 KB
testcase_49 AC 642 ms
72,704 KB
testcase_50 AC 654 ms
73,052 KB
testcase_51 AC 414 ms
82,008 KB
testcase_52 AC 418 ms
81,864 KB
testcase_53 AC 613 ms
82,072 KB
testcase_54 AC 422 ms
82,344 KB
testcase_55 AC 416 ms
82,048 KB
testcase_56 AC 683 ms
75,264 KB
testcase_57 AC 425 ms
82,048 KB
testcase_58 AC 420 ms
82,020 KB
testcase_59 AC 683 ms
74,296 KB
testcase_60 AC 610 ms
82,432 KB
testcase_61 AC 436 ms
81,876 KB
testcase_62 AC 410 ms
82,048 KB
testcase_63 AC 425 ms
82,048 KB
testcase_64 AC 412 ms
82,048 KB
testcase_65 AC 428 ms
82,176 KB
testcase_66 AC 417 ms
82,344 KB
testcase_67 AC 420 ms
82,048 KB
testcase_68 AC 406 ms
82,048 KB
testcase_69 AC 414 ms
82,176 KB
testcase_70 AC 417 ms
82,484 KB
testcase_71 AC 404 ms
82,048 KB
testcase_72 AC 436 ms
82,176 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