結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 47 ms
60,416 KB
testcase_02 AC 45 ms
59,264 KB
testcase_03 AC 49 ms
59,776 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 45 ms
59,264 KB
testcase_06 AC 49 ms
60,800 KB
testcase_07 AC 47 ms
58,880 KB
testcase_08 AC 45 ms
58,624 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 50 ms
60,416 KB
testcase_11 AC 471 ms
81,920 KB
testcase_12 AC 703 ms
72,320 KB
testcase_13 AC 454 ms
81,920 KB
testcase_14 AC 700 ms
72,832 KB
testcase_15 AC 689 ms
72,704 KB
testcase_16 AC 700 ms
73,088 KB
testcase_17 AC 702 ms
72,448 KB
testcase_18 AC 700 ms
72,704 KB
testcase_19 AC 692 ms
72,576 KB
testcase_20 AC 696 ms
72,832 KB
testcase_21 AC 706 ms
72,832 KB
testcase_22 AC 708 ms
72,448 KB
testcase_23 AC 701 ms
72,576 KB
testcase_24 AC 714 ms
72,448 KB
testcase_25 AC 714 ms
72,576 KB
testcase_26 AC 695 ms
72,704 KB
testcase_27 AC 710 ms
72,704 KB
testcase_28 AC 688 ms
72,576 KB
testcase_29 AC 696 ms
72,832 KB
testcase_30 AC 689 ms
72,320 KB
testcase_31 AC 708 ms
72,704 KB
testcase_32 AC 698 ms
73,984 KB
testcase_33 AC 694 ms
72,832 KB
testcase_34 AC 675 ms
72,960 KB
testcase_35 AC 720 ms
72,832 KB
testcase_36 AC 711 ms
71,808 KB
testcase_37 AC 674 ms
72,832 KB
testcase_38 AC 686 ms
72,576 KB
testcase_39 AC 687 ms
73,984 KB
testcase_40 AC 690 ms
72,704 KB
testcase_41 AC 694 ms
72,064 KB
testcase_42 AC 704 ms
74,368 KB
testcase_43 AC 694 ms
72,704 KB
testcase_44 AC 690 ms
73,344 KB
testcase_45 AC 700 ms
72,704 KB
testcase_46 AC 701 ms
72,832 KB
testcase_47 AC 704 ms
72,832 KB
testcase_48 AC 696 ms
72,448 KB
testcase_49 AC 699 ms
72,704 KB
testcase_50 AC 695 ms
72,704 KB
testcase_51 AC 413 ms
81,920 KB
testcase_52 AC 429 ms
81,664 KB
testcase_53 AC 624 ms
82,048 KB
testcase_54 AC 424 ms
81,920 KB
testcase_55 AC 427 ms
81,536 KB
testcase_56 AC 698 ms
75,008 KB
testcase_57 AC 447 ms
82,048 KB
testcase_58 AC 434 ms
81,792 KB
testcase_59 AC 699 ms
73,948 KB
testcase_60 AC 665 ms
82,432 KB
testcase_61 AC 434 ms
81,980 KB
testcase_62 AC 437 ms
81,640 KB
testcase_63 AC 432 ms
82,040 KB
testcase_64 AC 444 ms
81,920 KB
testcase_65 AC 431 ms
81,624 KB
testcase_66 AC 432 ms
81,948 KB
testcase_67 AC 437 ms
81,960 KB
testcase_68 AC 433 ms
81,664 KB
testcase_69 AC 443 ms
81,664 KB
testcase_70 AC 434 ms
82,048 KB
testcase_71 AC 436 ms
81,792 KB
testcase_72 AC 425 ms
82,012 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