結果

問題 No.2423 Merge Stones
ユーザー とりゐとりゐ
提出日時 2023-08-12 14:16:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 824 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,292 KB
最終ジャッジ日時 2024-11-19 18:16:18
合計ジャッジ時間 35,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 44 ms
58,496 KB
testcase_06 AC 44 ms
58,752 KB
testcase_07 WA -
testcase_08 AC 39 ms
52,568 KB
testcase_09 AC 39 ms
52,616 KB
testcase_10 AC 44 ms
58,752 KB
testcase_11 AC 1,242 ms
85,996 KB
testcase_12 AC 140 ms
73,356 KB
testcase_13 AC 140 ms
73,728 KB
testcase_14 AC 140 ms
73,336 KB
testcase_15 AC 139 ms
73,216 KB
testcase_16 AC 141 ms
73,600 KB
testcase_17 AC 136 ms
73,600 KB
testcase_18 AC 136 ms
73,344 KB
testcase_19 AC 136 ms
73,196 KB
testcase_20 AC 137 ms
73,200 KB
testcase_21 AC 136 ms
74,112 KB
testcase_22 AC 138 ms
73,344 KB
testcase_23 AC 137 ms
73,344 KB
testcase_24 AC 141 ms
73,600 KB
testcase_25 AC 141 ms
73,344 KB
testcase_26 AC 139 ms
73,472 KB
testcase_27 AC 141 ms
73,472 KB
testcase_28 AC 152 ms
78,336 KB
testcase_29 WA -
testcase_30 AC 140 ms
73,528 KB
testcase_31 AC 135 ms
73,600 KB
testcase_32 AC 140 ms
73,600 KB
testcase_33 AC 139 ms
73,088 KB
testcase_34 AC 140 ms
73,344 KB
testcase_35 AC 137 ms
73,344 KB
testcase_36 AC 138 ms
73,216 KB
testcase_37 AC 137 ms
73,984 KB
testcase_38 AC 138 ms
73,344 KB
testcase_39 WA -
testcase_40 AC 136 ms
73,356 KB
testcase_41 AC 137 ms
73,856 KB
testcase_42 AC 138 ms
73,728 KB
testcase_43 AC 139 ms
73,216 KB
testcase_44 WA -
testcase_45 AC 137 ms
73,856 KB
testcase_46 AC 136 ms
73,472 KB
testcase_47 AC 134 ms
73,856 KB
testcase_48 AC 137 ms
73,088 KB
testcase_49 AC 140 ms
74,112 KB
testcase_50 AC 136 ms
73,088 KB
testcase_51 AC 1,444 ms
86,120 KB
testcase_52 AC 1,478 ms
86,292 KB
testcase_53 AC 1,421 ms
86,124 KB
testcase_54 AC 1,428 ms
86,164 KB
testcase_55 AC 1,444 ms
85,704 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 1,313 ms
85,988 KB
testcase_62 AC 1,345 ms
86,156 KB
testcase_63 AC 1,343 ms
86,108 KB
testcase_64 AC 1,349 ms
85,896 KB
testcase_65 AC 1,267 ms
85,996 KB
testcase_66 AC 1,311 ms
86,004 KB
testcase_67 AC 1,279 ms
86,020 KB
testcase_68 AC 1,288 ms
86,024 KB
testcase_69 AC 1,316 ms
85,912 KB
testcase_70 AC 1,156 ms
85,572 KB
testcase_71 AC 699 ms
82,432 KB
testcase_72 AC 735 ms
82,516 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==-1 or l1==-1:
    return False
  return min(r0,r1)+k>=max(l0,l1)

ans=0
inf=1<<30
dp=[[-inf]*n for i in range(n)]
color=[[-1,-1]*n for i 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]=[min(l0,l1),max(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