結果

問題 No.2423 Merge Stones
ユーザー dyktr_06dyktr_06
提出日時 2023-07-15 17:50:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 854 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 79,308 KB
最終ジャッジ日時 2024-09-17 02:52:48
合計ジャッジ時間 103,982 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,944 KB
testcase_01 AC 58 ms
65,216 KB
testcase_02 AC 52 ms
64,024 KB
testcase_03 AC 49 ms
61,496 KB
testcase_04 AC 39 ms
54,020 KB
testcase_05 AC 45 ms
59,656 KB
testcase_06 AC 50 ms
62,108 KB
testcase_07 AC 47 ms
60,196 KB
testcase_08 AC 45 ms
60,764 KB
testcase_09 AC 39 ms
53,700 KB
testcase_10 AC 51 ms
62,396 KB
testcase_11 AC 3,777 ms
79,064 KB
testcase_12 AC 170 ms
78,076 KB
testcase_13 AC 838 ms
78,664 KB
testcase_14 AC 767 ms
78,672 KB
testcase_15 AC 690 ms
78,584 KB
testcase_16 AC 1,212 ms
78,804 KB
testcase_17 AC 768 ms
78,628 KB
testcase_18 AC 1,210 ms
79,176 KB
testcase_19 AC 172 ms
78,240 KB
testcase_20 AC 765 ms
78,976 KB
testcase_21 AC 793 ms
78,788 KB
testcase_22 AC 761 ms
78,980 KB
testcase_23 AC 691 ms
78,572 KB
testcase_24 AC 689 ms
78,872 KB
testcase_25 AC 690 ms
78,952 KB
testcase_26 AC 692 ms
78,580 KB
testcase_27 AC 1,000 ms
78,948 KB
testcase_28 AC 1,340 ms
78,936 KB
testcase_29 AC 1,169 ms
78,500 KB
testcase_30 AC 766 ms
79,012 KB
testcase_31 AC 765 ms
78,576 KB
testcase_32 AC 796 ms
79,280 KB
testcase_33 AC 690 ms
78,616 KB
testcase_34 AC 1,133 ms
78,888 KB
testcase_35 AC 762 ms
78,748 KB
testcase_36 AC 761 ms
78,992 KB
testcase_37 AC 697 ms
78,952 KB
testcase_38 AC 692 ms
78,644 KB
testcase_39 AC 798 ms
79,236 KB
testcase_40 AC 1,236 ms
78,956 KB
testcase_41 AC 1,132 ms
79,144 KB
testcase_42 AC 801 ms
79,004 KB
testcase_43 AC 170 ms
78,184 KB
testcase_44 AC 791 ms
79,216 KB
testcase_45 AC 689 ms
78,620 KB
testcase_46 AC 988 ms
78,952 KB
testcase_47 AC 687 ms
78,628 KB
testcase_48 AC 687 ms
78,580 KB
testcase_49 AC 171 ms
78,536 KB
testcase_50 AC 171 ms
78,088 KB
testcase_51 AC 3,208 ms
78,864 KB
testcase_52 AC 3,759 ms
79,132 KB
testcase_53 AC 3,832 ms
79,060 KB
testcase_54 AC 3,195 ms
79,072 KB
testcase_55 TLE -
testcase_56 AC 1,229 ms
78,884 KB
testcase_57 AC 1,160 ms
78,812 KB
testcase_58 AC 1,355 ms
79,216 KB
testcase_59 AC 845 ms
78,668 KB
testcase_60 AC 1,173 ms
78,784 KB
testcase_61 AC 3,755 ms
79,308 KB
testcase_62 AC 3,801 ms
78,816 KB
testcase_63 AC 3,715 ms
78,972 KB
testcase_64 AC 3,823 ms
78,720 KB
testcase_65 AC 3,791 ms
79,056 KB
testcase_66 AC 3,761 ms
78,920 KB
testcase_67 AC 3,791 ms
78,700 KB
testcase_68 AC 3,829 ms
79,016 KB
testcase_69 AC 3,803 ms
79,060 KB
testcase_70 AC 3,473 ms
78,688 KB
testcase_71 AC 2,716 ms
79,212 KB
testcase_72 AC 2,723 ms
78,980 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