結果

問題 No.2423 Merge Stones
ユーザー とりゐとりゐ
提出日時 2023-08-12 15:10:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,891 ms / 4,000 ms
コード長 1,035 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 77,472 KB
最終ジャッジ日時 2024-11-20 00:28:54
合計ジャッジ時間 165,622 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 67 ms
68,736 KB
testcase_02 AC 65 ms
67,456 KB
testcase_03 AC 64 ms
67,072 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 49 ms
61,568 KB
testcase_06 AC 68 ms
67,968 KB
testcase_07 AC 65 ms
68,096 KB
testcase_08 AC 43 ms
53,888 KB
testcase_09 AC 41 ms
53,120 KB
testcase_10 AC 61 ms
66,176 KB
testcase_11 AC 3,868 ms
77,088 KB
testcase_12 AC 450 ms
73,088 KB
testcase_13 AC 3,695 ms
77,168 KB
testcase_14 AC 2,057 ms
76,900 KB
testcase_15 AC 916 ms
76,952 KB
testcase_16 AC 3,165 ms
76,800 KB
testcase_17 AC 2,049 ms
76,928 KB
testcase_18 AC 3,185 ms
77,236 KB
testcase_19 AC 451 ms
72,960 KB
testcase_20 AC 2,070 ms
77,056 KB
testcase_21 AC 3,697 ms
76,928 KB
testcase_22 AC 2,057 ms
77,012 KB
testcase_23 AC 926 ms
76,952 KB
testcase_24 AC 918 ms
76,956 KB
testcase_25 AC 915 ms
76,928 KB
testcase_26 AC 916 ms
77,084 KB
testcase_27 AC 2,613 ms
76,900 KB
testcase_28 AC 3,707 ms
76,800 KB
testcase_29 AC 3,157 ms
77,056 KB
testcase_30 AC 2,042 ms
76,928 KB
testcase_31 AC 2,053 ms
77,184 KB
testcase_32 AC 3,702 ms
77,312 KB
testcase_33 AC 917 ms
76,928 KB
testcase_34 AC 2,609 ms
76,672 KB
testcase_35 AC 2,061 ms
76,800 KB
testcase_36 AC 2,054 ms
77,344 KB
testcase_37 AC 917 ms
76,828 KB
testcase_38 AC 918 ms
77,472 KB
testcase_39 AC 3,742 ms
77,068 KB
testcase_40 AC 3,207 ms
76,928 KB
testcase_41 AC 2,608 ms
76,672 KB
testcase_42 AC 3,717 ms
77,056 KB
testcase_43 AC 450 ms
72,832 KB
testcase_44 AC 3,694 ms
77,024 KB
testcase_45 AC 920 ms
76,956 KB
testcase_46 AC 2,626 ms
77,056 KB
testcase_47 AC 923 ms
77,132 KB
testcase_48 AC 913 ms
76,952 KB
testcase_49 AC 449 ms
72,832 KB
testcase_50 AC 448 ms
73,088 KB
testcase_51 AC 3,341 ms
77,184 KB
testcase_52 AC 3,341 ms
77,304 KB
testcase_53 AC 3,853 ms
76,928 KB
testcase_54 AC 3,317 ms
77,056 KB
testcase_55 AC 3,850 ms
77,228 KB
testcase_56 AC 3,164 ms
76,928 KB
testcase_57 AC 3,177 ms
76,904 KB
testcase_58 AC 3,703 ms
76,928 KB
testcase_59 AC 3,745 ms
76,928 KB
testcase_60 AC 3,192 ms
77,056 KB
testcase_61 AC 3,891 ms
77,056 KB
testcase_62 AC 3,862 ms
77,184 KB
testcase_63 AC 3,887 ms
77,056 KB
testcase_64 AC 3,856 ms
76,976 KB
testcase_65 AC 3,846 ms
77,444 KB
testcase_66 AC 3,890 ms
77,144 KB
testcase_67 AC 3,872 ms
77,056 KB
testcase_68 AC 3,862 ms
77,184 KB
testcase_69 AC 3,871 ms
77,144 KB
testcase_70 AC 3,869 ms
77,056 KB
testcase_71 AC 3,728 ms
77,056 KB
testcase_72 AC 3,725 ms
77,288 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
      res=dp[l][M0]&dp[M1][R]
      for j in range(1,k+1):
        dp[l][R]|=(dp[l][M0]<<j)&dp[M1][R]
        dp[l][R]|=(dp[M1][R]<<j)&dp[l][M0]
        dp[l][R]|=(dp[l][M0]>>j)&dp[M1][R]
        dp[l][R]|=(dp[M1][R]>>j)&dp[l][M0]
      
      tmp1=dp[l][M0]
      tmp2=dp[l][M0]
      for _ in range(k):
        tmp1>>=1
        tmp2<<=1
        res|=(tmp1|tmp2)&dp[M1][R]
      
      tmp1=dp[M1][R]
      tmp2=dp[M1][R]
      for _ in range(k):
        tmp1>>=1
        tmp2<<=1
        res|=(tmp1|tmp2)&dp[l][M0]
      
      dp[l][R]|=res

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