結果

問題 No.2423 Merge Stones
ユーザー sepa38sepa38
提出日時 2023-07-15 17:00:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,768 ms / 4,000 ms
コード長 780 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 77,388 KB
最終ジャッジ日時 2024-09-17 04:05:47
合計ジャッジ時間 125,406 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,684 KB
testcase_01 AC 51 ms
64,568 KB
testcase_02 AC 49 ms
62,944 KB
testcase_03 AC 47 ms
62,100 KB
testcase_04 AC 37 ms
52,872 KB
testcase_05 AC 48 ms
63,080 KB
testcase_06 AC 51 ms
63,356 KB
testcase_07 AC 48 ms
62,920 KB
testcase_08 AC 42 ms
54,728 KB
testcase_09 AC 38 ms
53,548 KB
testcase_10 AC 51 ms
63,588 KB
testcase_11 AC 2,758 ms
77,220 KB
testcase_12 AC 625 ms
76,896 KB
testcase_13 AC 2,758 ms
76,900 KB
testcase_14 AC 1,494 ms
76,832 KB
testcase_15 AC 1,310 ms
76,804 KB
testcase_16 AC 2,347 ms
76,960 KB
testcase_17 AC 1,499 ms
76,904 KB
testcase_18 AC 2,334 ms
76,932 KB
testcase_19 AC 610 ms
76,812 KB
testcase_20 AC 1,483 ms
76,724 KB
testcase_21 AC 2,768 ms
76,840 KB
testcase_22 AC 1,494 ms
76,704 KB
testcase_23 AC 1,308 ms
76,824 KB
testcase_24 AC 1,296 ms
77,172 KB
testcase_25 AC 1,270 ms
76,652 KB
testcase_26 AC 1,293 ms
76,688 KB
testcase_27 AC 1,888 ms
76,804 KB
testcase_28 AC 2,728 ms
76,716 KB
testcase_29 AC 2,295 ms
76,892 KB
testcase_30 AC 1,455 ms
76,636 KB
testcase_31 AC 1,464 ms
76,712 KB
testcase_32 AC 2,726 ms
76,840 KB
testcase_33 AC 1,273 ms
76,888 KB
testcase_34 AC 1,844 ms
77,132 KB
testcase_35 AC 1,448 ms
76,916 KB
testcase_36 AC 1,460 ms
76,600 KB
testcase_37 AC 1,270 ms
76,608 KB
testcase_38 AC 1,267 ms
76,592 KB
testcase_39 AC 2,728 ms
76,992 KB
testcase_40 AC 2,284 ms
76,816 KB
testcase_41 AC 1,858 ms
76,992 KB
testcase_42 AC 2,674 ms
77,044 KB
testcase_43 AC 603 ms
76,932 KB
testcase_44 AC 2,638 ms
77,048 KB
testcase_45 AC 1,242 ms
76,844 KB
testcase_46 AC 1,819 ms
77,032 KB
testcase_47 AC 1,252 ms
76,708 KB
testcase_48 AC 1,254 ms
76,824 KB
testcase_49 AC 612 ms
76,860 KB
testcase_50 AC 588 ms
76,852 KB
testcase_51 AC 2,267 ms
76,956 KB
testcase_52 AC 2,234 ms
77,040 KB
testcase_53 AC 2,607 ms
76,828 KB
testcase_54 AC 2,262 ms
76,920 KB
testcase_55 AC 2,692 ms
76,852 KB
testcase_56 AC 2,227 ms
76,928 KB
testcase_57 AC 2,194 ms
76,944 KB
testcase_58 AC 2,620 ms
76,784 KB
testcase_59 AC 2,675 ms
76,844 KB
testcase_60 AC 2,234 ms
76,876 KB
testcase_61 AC 2,634 ms
77,000 KB
testcase_62 AC 2,614 ms
76,740 KB
testcase_63 AC 2,622 ms
77,388 KB
testcase_64 AC 2,596 ms
76,788 KB
testcase_65 AC 2,551 ms
76,828 KB
testcase_66 AC 2,582 ms
77,060 KB
testcase_67 AC 2,551 ms
77,124 KB
testcase_68 AC 2,541 ms
76,912 KB
testcase_69 AC 2,615 ms
77,040 KB
testcase_70 AC 2,592 ms
77,056 KB
testcase_71 AC 2,643 ms
77,032 KB
testcase_72 AC 2,575 ms
77,256 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] * n for _ in range(n)]
for i in range(n):
  dp[i][i] = 1 << c[i]
for i in range(1, n):
  for l in range(n):
    r = (l + i) % n
    for j in range(i):
      m = (l + j) % n
      for p in range(k+1):
        dp[l][r] |= ((dp[l][m] << p) & dp[(m+1)%n][r])
        dp[l][r] |= ((dp[l][m] >> p) & dp[(m+1)%n][r])
        dp[l][r] |= (dp[l][m] & (dp[(m+1)%n][r] << p))
        dp[l][r] |= (dp[l][m] & (dp[(m+1)%n][r] >> p))
s = [0]
for i in range(n):
  s.append(s[i]+a[i])
ans = 0
for i in range(n):
  for j in range(n):
    if dp[i][j]:
      if i <= j:
        ans = max(ans, s[j+1]-s[i])
      else:
        ans = max(ans, s[n]-s[i]+s[j+1])
print(ans)
0