結果

問題 No.2423 Merge Stones
ユーザー とりゐとりゐ
提出日時 2023-08-12 15:06:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,072 ms / 4,000 ms
コード長 728 bytes
コンパイル時間 634 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-11-19 23:43:31
合計ジャッジ時間 125,765 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 62 ms
64,000 KB
testcase_02 AC 63 ms
64,128 KB
testcase_03 AC 58 ms
62,208 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 51 ms
59,648 KB
testcase_06 AC 60 ms
62,976 KB
testcase_07 AC 57 ms
61,952 KB
testcase_08 AC 44 ms
52,608 KB
testcase_09 AC 43 ms
52,224 KB
testcase_10 AC 59 ms
62,336 KB
testcase_11 AC 3,048 ms
76,672 KB
testcase_12 AC 267 ms
70,528 KB
testcase_13 AC 2,884 ms
76,672 KB
testcase_14 AC 1,422 ms
76,928 KB
testcase_15 AC 631 ms
76,704 KB
testcase_16 AC 2,407 ms
76,800 KB
testcase_17 AC 1,410 ms
76,928 KB
testcase_18 AC 2,410 ms
76,928 KB
testcase_19 AC 272 ms
70,656 KB
testcase_20 AC 1,416 ms
76,928 KB
testcase_21 AC 2,874 ms
76,672 KB
testcase_22 AC 1,417 ms
76,544 KB
testcase_23 AC 633 ms
77,056 KB
testcase_24 AC 631 ms
76,928 KB
testcase_25 AC 635 ms
77,184 KB
testcase_26 AC 632 ms
76,948 KB
testcase_27 AC 1,610 ms
76,800 KB
testcase_28 AC 2,881 ms
76,800 KB
testcase_29 AC 2,416 ms
76,544 KB
testcase_30 AC 1,419 ms
76,928 KB
testcase_31 AC 1,410 ms
76,928 KB
testcase_32 AC 2,893 ms
76,544 KB
testcase_33 AC 634 ms
76,700 KB
testcase_34 AC 1,613 ms
76,544 KB
testcase_35 AC 1,414 ms
76,928 KB
testcase_36 AC 1,420 ms
76,800 KB
testcase_37 AC 628 ms
76,824 KB
testcase_38 AC 636 ms
76,824 KB
testcase_39 AC 2,885 ms
76,672 KB
testcase_40 AC 2,399 ms
76,928 KB
testcase_41 AC 1,622 ms
77,056 KB
testcase_42 AC 2,887 ms
76,672 KB
testcase_43 AC 273 ms
70,528 KB
testcase_44 AC 2,877 ms
76,544 KB
testcase_45 AC 629 ms
76,832 KB
testcase_46 AC 1,603 ms
76,672 KB
testcase_47 AC 641 ms
76,928 KB
testcase_48 AC 633 ms
76,928 KB
testcase_49 AC 270 ms
70,400 KB
testcase_50 AC 269 ms
70,400 KB
testcase_51 AC 2,568 ms
77,056 KB
testcase_52 AC 2,557 ms
76,800 KB
testcase_53 AC 3,049 ms
76,928 KB
testcase_54 AC 2,560 ms
76,928 KB
testcase_55 AC 3,072 ms
76,800 KB
testcase_56 AC 2,401 ms
76,544 KB
testcase_57 AC 2,395 ms
76,928 KB
testcase_58 AC 2,880 ms
76,800 KB
testcase_59 AC 2,900 ms
76,672 KB
testcase_60 AC 2,409 ms
76,672 KB
testcase_61 AC 3,050 ms
76,928 KB
testcase_62 AC 3,045 ms
76,800 KB
testcase_63 AC 3,055 ms
77,440 KB
testcase_64 AC 3,054 ms
76,928 KB
testcase_65 AC 3,039 ms
76,672 KB
testcase_66 AC 3,055 ms
77,312 KB
testcase_67 AC 3,040 ms
76,928 KB
testcase_68 AC 3,042 ms
76,928 KB
testcase_69 AC 3,069 ms
76,928 KB
testcase_70 AC 3,042 ms
76,672 KB
testcase_71 AC 2,914 ms
76,928 KB
testcase_72 AC 2,899 ms
76,800 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
      dp[l][R]|=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]

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