結果

問題 No.2423 Merge Stones
ユーザー とりゐとりゐ
提出日時 2023-08-12 15:04:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,783 ms / 4,000 ms
コード長 711 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,316 KB
最終ジャッジ日時 2024-11-19 23:32:46
合計ジャッジ時間 125,801 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 52 ms
63,104 KB
testcase_02 AC 49 ms
62,464 KB
testcase_03 AC 50 ms
62,080 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 48 ms
61,056 KB
testcase_06 AC 50 ms
62,592 KB
testcase_07 AC 48 ms
61,440 KB
testcase_08 AC 40 ms
53,120 KB
testcase_09 AC 39 ms
52,480 KB
testcase_10 AC 52 ms
62,464 KB
testcase_11 AC 2,647 ms
76,848 KB
testcase_12 AC 347 ms
76,544 KB
testcase_13 AC 2,494 ms
76,672 KB
testcase_14 AC 1,366 ms
77,056 KB
testcase_15 AC 1,133 ms
76,800 KB
testcase_16 AC 2,629 ms
77,000 KB
testcase_17 AC 1,361 ms
77,056 KB
testcase_18 AC 2,578 ms
76,416 KB
testcase_19 AC 349 ms
76,672 KB
testcase_20 AC 1,405 ms
77,056 KB
testcase_21 AC 2,483 ms
77,148 KB
testcase_22 AC 1,362 ms
76,672 KB
testcase_23 AC 1,157 ms
76,664 KB
testcase_24 AC 1,141 ms
76,928 KB
testcase_25 AC 1,139 ms
76,672 KB
testcase_26 AC 1,156 ms
76,672 KB
testcase_27 AC 2,124 ms
76,800 KB
testcase_28 AC 2,517 ms
76,800 KB
testcase_29 AC 2,656 ms
76,416 KB
testcase_30 AC 1,376 ms
76,800 KB
testcase_31 AC 1,367 ms
76,928 KB
testcase_32 AC 2,499 ms
76,544 KB
testcase_33 AC 1,144 ms
76,880 KB
testcase_34 AC 2,127 ms
76,800 KB
testcase_35 AC 1,371 ms
76,888 KB
testcase_36 AC 1,365 ms
76,672 KB
testcase_37 AC 1,130 ms
76,848 KB
testcase_38 AC 1,139 ms
76,672 KB
testcase_39 AC 2,492 ms
76,992 KB
testcase_40 AC 2,602 ms
76,672 KB
testcase_41 AC 2,182 ms
77,204 KB
testcase_42 AC 2,493 ms
76,900 KB
testcase_43 AC 349 ms
76,696 KB
testcase_44 AC 2,503 ms
76,672 KB
testcase_45 AC 1,133 ms
77,172 KB
testcase_46 AC 2,148 ms
76,792 KB
testcase_47 AC 1,143 ms
76,668 KB
testcase_48 AC 1,128 ms
77,312 KB
testcase_49 AC 348 ms
76,992 KB
testcase_50 AC 347 ms
76,672 KB
testcase_51 AC 2,747 ms
76,928 KB
testcase_52 AC 2,783 ms
76,928 KB
testcase_53 AC 2,672 ms
76,916 KB
testcase_54 AC 2,752 ms
77,012 KB
testcase_55 AC 2,656 ms
77,316 KB
testcase_56 AC 2,593 ms
76,928 KB
testcase_57 AC 2,593 ms
76,672 KB
testcase_58 AC 2,490 ms
76,988 KB
testcase_59 AC 2,495 ms
76,672 KB
testcase_60 AC 2,598 ms
76,928 KB
testcase_61 AC 2,674 ms
76,928 KB
testcase_62 AC 2,672 ms
76,800 KB
testcase_63 AC 2,668 ms
77,184 KB
testcase_64 AC 2,657 ms
77,048 KB
testcase_65 AC 2,716 ms
76,928 KB
testcase_66 AC 2,661 ms
76,928 KB
testcase_67 AC 2,661 ms
76,672 KB
testcase_68 AC 2,676 ms
77,036 KB
testcase_69 AC 2,645 ms
77,064 KB
testcase_70 AC 2,719 ms
76,768 KB
testcase_71 AC 2,516 ms
76,928 KB
testcase_72 AC 2,510 ms
77,048 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
    R=r%n
    if l==r:
      dp[l][r]=1<<c[l]
      continue
    for m in range(l,r):
      M0=m%n
      M1=(m+1)%n
      for j in range(k+1):
        dp[l][R]|=(dp[l][M0]<<j)&dp[M1][R]
        dp[l][R]|=(dp[M1][R]<<j)&dp[l][M0]
        if j!=0:
          dp[l][R]|=(dp[l][M0]>>j)&dp[M1][R]
          dp[l][R]|=(dp[M1][R]>>j)&dp[l][M0]

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

print(ans)
0