結果

問題 No.2423 Merge Stones
ユーザー dyktr_06dyktr_06
提出日時 2023-07-15 17:54:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,734 ms / 4,000 ms
コード長 848 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 79,420 KB
最終ジャッジ日時 2024-09-17 04:01:43
合計ジャッジ時間 81,173 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,232 KB
testcase_01 AC 51 ms
64,752 KB
testcase_02 AC 49 ms
63,704 KB
testcase_03 AC 49 ms
61,692 KB
testcase_04 AC 38 ms
53,136 KB
testcase_05 AC 51 ms
60,296 KB
testcase_06 AC 53 ms
63,576 KB
testcase_07 AC 45 ms
60,620 KB
testcase_08 AC 42 ms
60,368 KB
testcase_09 AC 37 ms
54,124 KB
testcase_10 AC 44 ms
63,364 KB
testcase_11 AC 2,243 ms
79,252 KB
testcase_12 AC 265 ms
78,488 KB
testcase_13 AC 904 ms
79,064 KB
testcase_14 AC 830 ms
78,800 KB
testcase_15 AC 769 ms
78,808 KB
testcase_16 AC 1,170 ms
79,256 KB
testcase_17 AC 827 ms
79,028 KB
testcase_18 AC 1,213 ms
78,932 KB
testcase_19 AC 273 ms
78,556 KB
testcase_20 AC 847 ms
78,832 KB
testcase_21 AC 897 ms
78,920 KB
testcase_22 AC 813 ms
79,400 KB
testcase_23 AC 750 ms
79,112 KB
testcase_24 AC 759 ms
78,800 KB
testcase_25 AC 760 ms
78,860 KB
testcase_26 AC 759 ms
78,952 KB
testcase_27 AC 1,025 ms
79,208 KB
testcase_28 AC 1,331 ms
78,896 KB
testcase_29 AC 1,153 ms
78,912 KB
testcase_30 AC 810 ms
78,652 KB
testcase_31 AC 822 ms
79,232 KB
testcase_32 AC 859 ms
79,216 KB
testcase_33 AC 746 ms
78,676 KB
testcase_34 AC 1,039 ms
78,984 KB
testcase_35 AC 824 ms
79,152 KB
testcase_36 AC 819 ms
79,252 KB
testcase_37 AC 770 ms
78,832 KB
testcase_38 AC 751 ms
78,888 KB
testcase_39 AC 858 ms
79,048 KB
testcase_40 AC 1,190 ms
78,872 KB
testcase_41 AC 1,089 ms
78,892 KB
testcase_42 AC 877 ms
79,096 KB
testcase_43 AC 268 ms
78,500 KB
testcase_44 AC 879 ms
78,944 KB
testcase_45 AC 763 ms
78,940 KB
testcase_46 AC 1,090 ms
79,112 KB
testcase_47 AC 764 ms
78,764 KB
testcase_48 AC 775 ms
78,728 KB
testcase_49 AC 265 ms
78,964 KB
testcase_50 AC 264 ms
78,348 KB
testcase_51 AC 1,880 ms
79,184 KB
testcase_52 AC 2,412 ms
79,200 KB
testcase_53 AC 2,277 ms
79,024 KB
testcase_54 AC 1,977 ms
78,844 KB
testcase_55 AC 2,734 ms
79,052 KB
testcase_56 AC 1,248 ms
79,420 KB
testcase_57 AC 1,209 ms
79,148 KB
testcase_58 AC 1,409 ms
78,956 KB
testcase_59 AC 917 ms
79,356 KB
testcase_60 AC 1,234 ms
78,880 KB
testcase_61 AC 2,335 ms
79,124 KB
testcase_62 AC 2,297 ms
78,992 KB
testcase_63 AC 2,262 ms
78,996 KB
testcase_64 AC 2,284 ms
79,220 KB
testcase_65 AC 2,345 ms
78,976 KB
testcase_66 AC 2,362 ms
79,196 KB
testcase_67 AC 2,327 ms
78,944 KB
testcase_68 AC 2,348 ms
78,944 KB
testcase_69 AC 2,344 ms
79,080 KB
testcase_70 AC 2,252 ms
79,152 KB
testcase_71 AC 1,990 ms
78,964 KB
testcase_72 AC 2,000 ms
79,228 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
      bitl, bitr = dp[l][m], dp[m + 1][r]
      for p in range(k + 1):
        if dp[l][m] == 0 or dp[m + 1][r] == 0:
          continue
        dp[l][r] |= ((bitl << p) & bitr)
        dp[l][r] |= ((bitl >> p) & bitr)
        dp[l][r] |= (bitl & (bitr << p))
        dp[l][r] |= (bitl & (bitr >> 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