結果

問題 No.2423 Merge Stones
ユーザー とりゐとりゐ
提出日時 2023-08-12 14:41:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,176 ms / 4,000 ms
コード長 712 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,516 KB
最終ジャッジ日時 2024-11-19 21:10:00
合計ジャッジ時間 141,032 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,864 KB
testcase_01 AC 56 ms
63,872 KB
testcase_02 AC 54 ms
63,744 KB
testcase_03 AC 52 ms
62,848 KB
testcase_04 AC 39 ms
52,500 KB
testcase_05 AC 51 ms
62,336 KB
testcase_06 AC 54 ms
63,232 KB
testcase_07 AC 52 ms
62,848 KB
testcase_08 AC 43 ms
54,400 KB
testcase_09 AC 37 ms
52,992 KB
testcase_10 AC 56 ms
64,128 KB
testcase_11 AC 2,901 ms
77,040 KB
testcase_12 AC 540 ms
76,968 KB
testcase_13 AC 2,769 ms
77,056 KB
testcase_14 AC 1,522 ms
76,760 KB
testcase_15 AC 1,388 ms
77,288 KB
testcase_16 AC 3,035 ms
76,880 KB
testcase_17 AC 1,530 ms
76,672 KB
testcase_18 AC 2,980 ms
76,664 KB
testcase_19 AC 544 ms
76,928 KB
testcase_20 AC 1,524 ms
76,800 KB
testcase_21 AC 2,716 ms
76,828 KB
testcase_22 AC 1,521 ms
76,928 KB
testcase_23 AC 1,368 ms
76,724 KB
testcase_24 AC 1,364 ms
76,800 KB
testcase_25 AC 1,383 ms
76,808 KB
testcase_26 AC 1,380 ms
76,800 KB
testcase_27 AC 2,423 ms
76,948 KB
testcase_28 AC 2,753 ms
76,800 KB
testcase_29 AC 2,918 ms
77,056 KB
testcase_30 AC 1,516 ms
76,780 KB
testcase_31 AC 1,506 ms
76,776 KB
testcase_32 AC 2,720 ms
76,800 KB
testcase_33 AC 1,384 ms
76,684 KB
testcase_34 AC 2,417 ms
76,672 KB
testcase_35 AC 1,503 ms
77,016 KB
testcase_36 AC 1,509 ms
76,872 KB
testcase_37 AC 1,359 ms
77,268 KB
testcase_38 AC 1,367 ms
76,800 KB
testcase_39 AC 2,827 ms
76,792 KB
testcase_40 AC 2,923 ms
76,716 KB
testcase_41 AC 2,504 ms
76,868 KB
testcase_42 AC 2,784 ms
76,800 KB
testcase_43 AC 573 ms
77,000 KB
testcase_44 AC 2,792 ms
76,652 KB
testcase_45 AC 1,379 ms
76,652 KB
testcase_46 AC 2,434 ms
76,800 KB
testcase_47 AC 1,360 ms
76,788 KB
testcase_48 AC 1,353 ms
76,928 KB
testcase_49 AC 549 ms
76,840 KB
testcase_50 AC 545 ms
76,800 KB
testcase_51 AC 3,176 ms
77,044 KB
testcase_52 AC 3,116 ms
77,056 KB
testcase_53 AC 2,895 ms
77,044 KB
testcase_54 AC 3,120 ms
77,056 KB
testcase_55 AC 2,945 ms
76,928 KB
testcase_56 AC 2,944 ms
76,684 KB
testcase_57 AC 2,925 ms
77,056 KB
testcase_58 AC 2,710 ms
76,888 KB
testcase_59 AC 2,715 ms
76,744 KB
testcase_60 AC 2,936 ms
76,784 KB
testcase_61 AC 2,868 ms
76,844 KB
testcase_62 AC 2,890 ms
77,176 KB
testcase_63 AC 2,906 ms
76,976 KB
testcase_64 AC 2,907 ms
76,844 KB
testcase_65 AC 2,911 ms
76,916 KB
testcase_66 AC 2,913 ms
77,516 KB
testcase_67 AC 3,128 ms
77,204 KB
testcase_68 AC 2,899 ms
76,928 KB
testcase_69 AC 2,900 ms
77,312 KB
testcase_70 AC 2,870 ms
77,184 KB
testcase_71 AC 2,749 ms
77,112 KB
testcase_72 AC 2,758 ms
76,984 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 i in range(n)]
for d in range(n):
  for l in range(n):
    r=l+d
    if l==r:
      dp[l][r]=1<<c[l]
      continue
    for m in range(l,r):
      for j in range(k+1):
        dp[l][r%n]|=(dp[l][m%n]<<j)&dp[(m+1)%n][r%n]
        dp[l][r%n]|=(dp[l][m%n]>>j)&dp[(m+1)%n][r%n]
        dp[l][r%n]|=(dp[(m+1)%n][r%n]<<j)&dp[l][m%n]
        dp[l][r%n]|=(dp[(m+1)%n][r%n]>>j)&dp[l][m%n]

ans=0
for i in range(n):
  for j in range(n):
    if dp[i][j]:
      res=0
      l=i
      r=j
      if r<l:
        r+=n
      for ii in range(l,r+1):
        res+=a[ii%n]
      ans=max(ans,res)

print(ans)
0