結果

問題 No.2423 Merge Stones
ユーザー とりゐとりゐ
提出日時 2023-08-12 14:31:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 948 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 86,268 KB
最終ジャッジ日時 2024-11-19 20:01:33
合計ジャッジ時間 48,451 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,016 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 38 ms
52,928 KB
testcase_05 AC 43 ms
59,260 KB
testcase_06 AC 44 ms
59,600 KB
testcase_07 WA -
testcase_08 AC 40 ms
53,192 KB
testcase_09 AC 38 ms
53,124 KB
testcase_10 AC 44 ms
59,620 KB
testcase_11 AC 1,974 ms
85,748 KB
testcase_12 AC 150 ms
84,512 KB
testcase_13 AC 152 ms
84,632 KB
testcase_14 AC 154 ms
84,432 KB
testcase_15 AC 150 ms
84,544 KB
testcase_16 AC 151 ms
84,824 KB
testcase_17 AC 152 ms
84,916 KB
testcase_18 AC 150 ms
84,664 KB
testcase_19 AC 151 ms
84,652 KB
testcase_20 AC 150 ms
84,500 KB
testcase_21 AC 150 ms
84,676 KB
testcase_22 AC 149 ms
84,592 KB
testcase_23 AC 149 ms
84,500 KB
testcase_24 AC 149 ms
84,544 KB
testcase_25 AC 151 ms
84,424 KB
testcase_26 AC 150 ms
84,592 KB
testcase_27 AC 149 ms
84,696 KB
testcase_28 AC 153 ms
84,492 KB
testcase_29 WA -
testcase_30 AC 151 ms
84,556 KB
testcase_31 AC 152 ms
84,560 KB
testcase_32 AC 152 ms
84,484 KB
testcase_33 AC 150 ms
84,684 KB
testcase_34 AC 151 ms
84,476 KB
testcase_35 AC 151 ms
84,496 KB
testcase_36 AC 150 ms
84,528 KB
testcase_37 AC 150 ms
84,944 KB
testcase_38 AC 151 ms
84,580 KB
testcase_39 WA -
testcase_40 AC 151 ms
84,572 KB
testcase_41 AC 150 ms
84,664 KB
testcase_42 AC 152 ms
84,580 KB
testcase_43 AC 153 ms
84,660 KB
testcase_44 WA -
testcase_45 AC 150 ms
84,480 KB
testcase_46 AC 151 ms
84,552 KB
testcase_47 AC 151 ms
84,500 KB
testcase_48 AC 150 ms
84,592 KB
testcase_49 AC 152 ms
84,716 KB
testcase_50 AC 149 ms
84,712 KB
testcase_51 AC 2,211 ms
85,552 KB
testcase_52 AC 1,894 ms
85,540 KB
testcase_53 AC 1,998 ms
85,912 KB
testcase_54 AC 2,176 ms
85,912 KB
testcase_55 AC 2,149 ms
85,748 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 2,052 ms
85,764 KB
testcase_62 AC 2,054 ms
85,936 KB
testcase_63 AC 1,921 ms
85,880 KB
testcase_64 AC 2,214 ms
85,956 KB
testcase_65 AC 2,062 ms
86,268 KB
testcase_66 AC 1,943 ms
85,968 KB
testcase_67 AC 1,937 ms
85,752 KB
testcase_68 AC 1,990 ms
85,880 KB
testcase_69 AC 2,213 ms
85,816 KB
testcase_70 AC 1,664 ms
86,028 KB
testcase_71 AC 820 ms
85,852 KB
testcase_72 AC 814 ms
85,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
c=list(map(lambda x:int(x)-1,input().split()))

def check(l0,r0,l1,r1):
  if l0==inf or l1==inf:
    return False
  return min(r0,r1)+k>=max(l0,l1)

ans=0
inf=1<<60
dp=[[-inf]*n for i in range(n)]
color=[[[inf,-1] for i in range(n)] for j in range(n)]
for d in range(n):
  for l in range(n):
    r=(l+d)%n
    if l==r:
      dp[l][r]=a[l]
      color[l][r]=[c[l],c[l]]
      continue
    for m in range(l,l+d):
      m%=n
      if dp[l][m]==-inf or dp[(m+1)%n][r]==-inf:
        continue
      l0,r0=color[l][m]
      l1,r1=color[(m+1)%n][r]
      if check(l0,r0,l1,r1):
        dp[l][r]=max(dp[l][r],dp[l][m]+dp[(m+1)%n][r])
        # color[l][r][0]=[min(l0,l1),max(r0,r1)]
        color[l][r][0]=min(color[l][r][0],l0,l1)
        color[l][r][1]=max(color[l][r][1],r0,r1)
        # print(l,m,r,l0,r0,l1,r1)

for l in range(n):
  for r in range(n):
    ans=max(ans,dp[l][r])

print(ans)
0