結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,004 KB
testcase_01 AC 47 ms
61,388 KB
testcase_02 AC 45 ms
61,016 KB
testcase_03 AC 46 ms
60,988 KB
testcase_04 AC 38 ms
52,628 KB
testcase_05 AC 45 ms
60,176 KB
testcase_06 AC 47 ms
60,588 KB
testcase_07 AC 45 ms
59,296 KB
testcase_08 AC 45 ms
60,680 KB
testcase_09 AC 40 ms
52,400 KB
testcase_10 AC 46 ms
62,296 KB
testcase_11 AC 440 ms
81,984 KB
testcase_12 AC 711 ms
73,204 KB
testcase_13 AC 449 ms
82,028 KB
testcase_14 AC 720 ms
74,376 KB
testcase_15 AC 674 ms
72,544 KB
testcase_16 AC 700 ms
73,956 KB
testcase_17 AC 686 ms
73,880 KB
testcase_18 AC 716 ms
73,764 KB
testcase_19 AC 681 ms
73,700 KB
testcase_20 AC 715 ms
73,856 KB
testcase_21 AC 682 ms
73,640 KB
testcase_22 AC 715 ms
74,128 KB
testcase_23 AC 672 ms
73,940 KB
testcase_24 AC 728 ms
73,352 KB
testcase_25 AC 679 ms
73,804 KB
testcase_26 AC 712 ms
73,068 KB
testcase_27 AC 667 ms
73,508 KB
testcase_28 AC 717 ms
73,512 KB
testcase_29 AC 693 ms
73,544 KB
testcase_30 AC 715 ms
73,448 KB
testcase_31 AC 667 ms
73,184 KB
testcase_32 AC 716 ms
74,488 KB
testcase_33 AC 695 ms
74,308 KB
testcase_34 AC 708 ms
73,924 KB
testcase_35 AC 685 ms
73,144 KB
testcase_36 AC 710 ms
73,904 KB
testcase_37 AC 686 ms
72,952 KB
testcase_38 AC 722 ms
72,680 KB
testcase_39 AC 679 ms
75,492 KB
testcase_40 AC 710 ms
73,120 KB
testcase_41 AC 684 ms
73,080 KB
testcase_42 AC 713 ms
74,700 KB
testcase_43 AC 718 ms
73,140 KB
testcase_44 AC 713 ms
73,260 KB
testcase_45 AC 672 ms
73,332 KB
testcase_46 AC 704 ms
74,132 KB
testcase_47 AC 679 ms
73,708 KB
testcase_48 AC 728 ms
74,212 KB
testcase_49 AC 683 ms
74,464 KB
testcase_50 AC 726 ms
73,760 KB
testcase_51 AC 433 ms
81,784 KB
testcase_52 AC 431 ms
82,196 KB
testcase_53 AC 622 ms
81,960 KB
testcase_54 AC 428 ms
82,084 KB
testcase_55 AC 428 ms
81,752 KB
testcase_56 AC 721 ms
75,496 KB
testcase_57 AC 430 ms
82,100 KB
testcase_58 AC 424 ms
81,684 KB
testcase_59 AC 726 ms
73,944 KB
testcase_60 AC 658 ms
82,256 KB
testcase_61 AC 437 ms
82,320 KB
testcase_62 AC 435 ms
81,832 KB
testcase_63 AC 435 ms
82,028 KB
testcase_64 AC 435 ms
81,716 KB
testcase_65 AC 429 ms
81,864 KB
testcase_66 AC 433 ms
82,464 KB
testcase_67 AC 442 ms
82,076 KB
testcase_68 AC 425 ms
81,964 KB
testcase_69 AC 427 ms
82,108 KB
testcase_70 AC 437 ms
81,940 KB
testcase_71 AC 427 ms
81,992 KB
testcase_72 AC 433 ms
81,932 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 * dp[i][i + 1]
    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