結果

問題 No.2423 Merge Stones
ユーザー dyktr_06dyktr_06
提出日時 2023-07-15 17:45:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,784 ms / 4,000 ms
コード長 854 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 79,336 KB
最終ジャッジ日時 2024-09-17 02:46:52
合計ジャッジ時間 90,612 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,664 KB
testcase_01 AC 48 ms
65,224 KB
testcase_02 AC 44 ms
63,144 KB
testcase_03 AC 42 ms
61,648 KB
testcase_04 AC 33 ms
52,828 KB
testcase_05 AC 38 ms
60,768 KB
testcase_06 AC 42 ms
62,512 KB
testcase_07 AC 40 ms
61,196 KB
testcase_08 AC 37 ms
60,724 KB
testcase_09 AC 32 ms
54,608 KB
testcase_10 AC 41 ms
62,776 KB
testcase_11 AC 3,297 ms
79,208 KB
testcase_12 AC 153 ms
78,472 KB
testcase_13 AC 747 ms
78,960 KB
testcase_14 AC 672 ms
78,564 KB
testcase_15 AC 614 ms
78,948 KB
testcase_16 AC 1,062 ms
78,996 KB
testcase_17 AC 674 ms
79,164 KB
testcase_18 AC 1,071 ms
79,116 KB
testcase_19 AC 156 ms
78,572 KB
testcase_20 AC 677 ms
78,948 KB
testcase_21 AC 765 ms
78,860 KB
testcase_22 AC 670 ms
78,868 KB
testcase_23 AC 609 ms
78,944 KB
testcase_24 AC 606 ms
78,812 KB
testcase_25 AC 613 ms
78,812 KB
testcase_26 AC 616 ms
79,176 KB
testcase_27 AC 869 ms
79,148 KB
testcase_28 AC 1,170 ms
78,976 KB
testcase_29 AC 1,027 ms
78,968 KB
testcase_30 AC 675 ms
78,868 KB
testcase_31 AC 680 ms
79,192 KB
testcase_32 AC 709 ms
78,664 KB
testcase_33 AC 613 ms
78,940 KB
testcase_34 AC 1,002 ms
79,016 KB
testcase_35 AC 682 ms
78,964 KB
testcase_36 AC 675 ms
78,908 KB
testcase_37 AC 607 ms
79,008 KB
testcase_38 AC 615 ms
78,868 KB
testcase_39 AC 720 ms
78,856 KB
testcase_40 AC 1,078 ms
79,104 KB
testcase_41 AC 972 ms
79,256 KB
testcase_42 AC 709 ms
78,912 KB
testcase_43 AC 157 ms
78,436 KB
testcase_44 AC 701 ms
79,100 KB
testcase_45 AC 616 ms
78,908 KB
testcase_46 AC 873 ms
79,116 KB
testcase_47 AC 606 ms
79,236 KB
testcase_48 AC 603 ms
78,852 KB
testcase_49 AC 153 ms
79,004 KB
testcase_50 AC 153 ms
78,556 KB
testcase_51 AC 2,859 ms
79,220 KB
testcase_52 AC 3,244 ms
78,988 KB
testcase_53 AC 3,300 ms
79,260 KB
testcase_54 AC 2,802 ms
78,968 KB
testcase_55 AC 3,784 ms
79,248 KB
testcase_56 AC 1,075 ms
79,096 KB
testcase_57 AC 1,030 ms
78,968 KB
testcase_58 AC 1,175 ms
79,104 KB
testcase_59 AC 737 ms
79,160 KB
testcase_60 AC 1,022 ms
79,252 KB
testcase_61 AC 3,416 ms
79,080 KB
testcase_62 AC 3,322 ms
78,900 KB
testcase_63 AC 3,204 ms
79,060 KB
testcase_64 AC 3,379 ms
79,272 KB
testcase_65 AC 3,309 ms
79,028 KB
testcase_66 AC 3,228 ms
79,012 KB
testcase_67 AC 3,268 ms
79,100 KB
testcase_68 AC 3,269 ms
79,156 KB
testcase_69 AC 3,287 ms
78,996 KB
testcase_70 AC 3,093 ms
78,960 KB
testcase_71 AC 2,432 ms
79,336 KB
testcase_72 AC 2,526 ms
79,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
c = list(map(lambda x: int(x)-1, input().split()))
dp = [[0] * 2 * n for _ in range(2 * n)]
for i in range(n):
  dp[i][i] = 1 << c[i]
  dp[i + n][i + n] = 1 << c[i]

for len in range(2, n + 1):
  for l in range(2 * n - len + 1):
    r = l + len - 1
    for i in range(len - 1):
      m = l + i
      for p in range(k + 1):
        if dp[l][m] == 0 or dp[m + 1][r] == 0:
          continue
        dp[l][r] |= ((dp[l][m] << p) & dp[m + 1][r])
        dp[l][r] |= ((dp[l][m] >> p) & dp[m + 1][r])
        dp[l][r] |= (dp[l][m] & (dp[m + 1][r] << p))
        dp[l][r] |= (dp[l][m] & (dp[m + 1][r] >> p))

s = [0]
for i in range(2 * n):
  s.append(s[i] + a[i % n])
ans = 0
for i in range(2 * n):
  for j in range(i, 2 * n):
    if dp[i][j]:
      ans = max(ans, s[j + 1] - s[i])
print(ans)
0