結果

問題 No.2423 Merge Stones
ユーザー dyktr_06dyktr_06
提出日時 2023-07-15 17:41:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,426 ms / 4,000 ms
コード長 788 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 79,080 KB
最終ジャッジ日時 2024-09-17 02:40:12
合計ジャッジ時間 160,369 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,356 KB
testcase_01 AC 52 ms
63,508 KB
testcase_02 AC 53 ms
62,836 KB
testcase_03 AC 50 ms
62,424 KB
testcase_04 AC 39 ms
52,220 KB
testcase_05 AC 49 ms
62,228 KB
testcase_06 AC 51 ms
63,256 KB
testcase_07 AC 51 ms
64,044 KB
testcase_08 AC 49 ms
61,920 KB
testcase_09 AC 40 ms
53,088 KB
testcase_10 AC 53 ms
63,284 KB
testcase_11 AC 3,373 ms
78,796 KB
testcase_12 AC 608 ms
78,584 KB
testcase_13 AC 3,404 ms
78,776 KB
testcase_14 AC 2,262 ms
78,656 KB
testcase_15 AC 1,453 ms
78,724 KB
testcase_16 AC 2,909 ms
78,976 KB
testcase_17 AC 2,247 ms
78,936 KB
testcase_18 AC 2,916 ms
78,812 KB
testcase_19 AC 607 ms
78,404 KB
testcase_20 AC 2,289 ms
78,576 KB
testcase_21 AC 3,381 ms
78,492 KB
testcase_22 AC 2,271 ms
78,836 KB
testcase_23 AC 1,470 ms
78,756 KB
testcase_24 AC 1,452 ms
78,652 KB
testcase_25 AC 1,464 ms
78,496 KB
testcase_26 AC 1,457 ms
79,000 KB
testcase_27 AC 2,466 ms
78,592 KB
testcase_28 AC 3,426 ms
78,820 KB
testcase_29 AC 2,894 ms
78,624 KB
testcase_30 AC 2,274 ms
78,760 KB
testcase_31 AC 2,259 ms
79,072 KB
testcase_32 AC 3,389 ms
78,756 KB
testcase_33 AC 1,452 ms
78,436 KB
testcase_34 AC 2,415 ms
78,888 KB
testcase_35 AC 2,265 ms
78,900 KB
testcase_36 AC 2,333 ms
78,816 KB
testcase_37 AC 1,448 ms
78,776 KB
testcase_38 AC 1,453 ms
78,556 KB
testcase_39 AC 3,400 ms
78,676 KB
testcase_40 AC 2,893 ms
78,748 KB
testcase_41 AC 2,413 ms
78,844 KB
testcase_42 AC 3,396 ms
78,596 KB
testcase_43 AC 611 ms
78,940 KB
testcase_44 AC 3,370 ms
78,508 KB
testcase_45 AC 1,466 ms
78,804 KB
testcase_46 AC 2,424 ms
78,712 KB
testcase_47 AC 1,461 ms
78,696 KB
testcase_48 AC 1,467 ms
78,488 KB
testcase_49 AC 607 ms
78,596 KB
testcase_50 AC 603 ms
78,972 KB
testcase_51 AC 2,911 ms
78,440 KB
testcase_52 AC 2,898 ms
78,812 KB
testcase_53 AC 3,394 ms
78,836 KB
testcase_54 AC 2,943 ms
78,956 KB
testcase_55 AC 3,392 ms
78,556 KB
testcase_56 AC 2,898 ms
78,572 KB
testcase_57 AC 2,899 ms
79,036 KB
testcase_58 AC 3,393 ms
78,504 KB
testcase_59 AC 3,414 ms
78,832 KB
testcase_60 AC 2,918 ms
78,680 KB
testcase_61 AC 3,412 ms
78,548 KB
testcase_62 AC 3,397 ms
78,560 KB
testcase_63 AC 3,408 ms
79,080 KB
testcase_64 AC 3,379 ms
78,740 KB
testcase_65 AC 3,399 ms
78,908 KB
testcase_66 AC 3,398 ms
78,972 KB
testcase_67 AC 3,397 ms
79,044 KB
testcase_68 AC 3,393 ms
79,000 KB
testcase_69 AC 3,379 ms
79,008 KB
testcase_70 AC 3,389 ms
78,700 KB
testcase_71 AC 3,397 ms
78,552 KB
testcase_72 AC 3,389 ms
78,592 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):
        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