結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 42 ms
58,496 KB
testcase_06 AC 44 ms
59,008 KB
testcase_07 WA -
testcase_08 AC 38 ms
52,736 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 43 ms
58,752 KB
testcase_11 AC 1,270 ms
86,124 KB
testcase_12 AC 133 ms
73,344 KB
testcase_13 AC 135 ms
73,728 KB
testcase_14 AC 133 ms
73,344 KB
testcase_15 AC 133 ms
73,456 KB
testcase_16 AC 136 ms
73,728 KB
testcase_17 AC 138 ms
73,216 KB
testcase_18 AC 139 ms
73,396 KB
testcase_19 AC 134 ms
73,216 KB
testcase_20 AC 135 ms
73,088 KB
testcase_21 AC 135 ms
73,856 KB
testcase_22 AC 137 ms
73,088 KB
testcase_23 AC 140 ms
73,344 KB
testcase_24 AC 135 ms
73,600 KB
testcase_25 AC 135 ms
73,600 KB
testcase_26 AC 138 ms
73,344 KB
testcase_27 AC 138 ms
73,472 KB
testcase_28 AC 146 ms
78,720 KB
testcase_29 WA -
testcase_30 AC 138 ms
73,984 KB
testcase_31 AC 136 ms
73,596 KB
testcase_32 AC 139 ms
73,344 KB
testcase_33 AC 136 ms
73,344 KB
testcase_34 AC 139 ms
73,344 KB
testcase_35 AC 133 ms
73,088 KB
testcase_36 AC 137 ms
73,216 KB
testcase_37 AC 135 ms
73,728 KB
testcase_38 AC 135 ms
73,344 KB
testcase_39 WA -
testcase_40 AC 135 ms
73,728 KB
testcase_41 AC 135 ms
73,728 KB
testcase_42 AC 135 ms
73,600 KB
testcase_43 AC 136 ms
73,088 KB
testcase_44 WA -
testcase_45 AC 135 ms
73,216 KB
testcase_46 AC 135 ms
73,472 KB
testcase_47 AC 134 ms
73,344 KB
testcase_48 AC 138 ms
73,344 KB
testcase_49 AC 137 ms
73,728 KB
testcase_50 AC 135 ms
73,216 KB
testcase_51 AC 1,452 ms
85,860 KB
testcase_52 AC 1,454 ms
86,216 KB
testcase_53 AC 1,384 ms
86,180 KB
testcase_54 AC 1,429 ms
86,168 KB
testcase_55 AC 1,411 ms
85,988 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 1,367 ms
86,144 KB
testcase_62 AC 1,340 ms
86,248 KB
testcase_63 AC 1,298 ms
86,104 KB
testcase_64 AC 1,272 ms
85,896 KB
testcase_65 AC 1,284 ms
86,252 KB
testcase_66 AC 1,294 ms
86,124 KB
testcase_67 AC 1,244 ms
86,152 KB
testcase_68 AC 1,279 ms
85,896 KB
testcase_69 AC 1,314 ms
86,048 KB
testcase_70 AC 1,127 ms
85,532 KB
testcase_71 AC 720 ms
82,472 KB
testcase_72 AC 691 ms
82,248 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<<60
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