結果

問題 No.2423 Merge Stones
ユーザー titiatitia
提出日時 2023-08-23 07:10:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 973 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-12-21 07:48:10
合計ジャッジ時間 57,677 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 40 ms
59,956 KB
testcase_06 AC 49 ms
59,468 KB
testcase_07 WA -
testcase_08 AC 38 ms
52,760 KB
testcase_09 AC 42 ms
52,204 KB
testcase_10 AC 41 ms
59,264 KB
testcase_11 AC 1,353 ms
84,124 KB
testcase_12 AC 602 ms
83,584 KB
testcase_13 AC 625 ms
83,996 KB
testcase_14 AC 596 ms
83,584 KB
testcase_15 AC 607 ms
83,328 KB
testcase_16 AC 599 ms
83,456 KB
testcase_17 AC 591 ms
83,712 KB
testcase_18 AC 578 ms
83,712 KB
testcase_19 AC 567 ms
83,512 KB
testcase_20 AC 573 ms
83,328 KB
testcase_21 AC 602 ms
83,712 KB
testcase_22 AC 608 ms
83,660 KB
testcase_23 AC 604 ms
83,896 KB
testcase_24 AC 591 ms
83,644 KB
testcase_25 AC 583 ms
83,328 KB
testcase_26 AC 580 ms
83,840 KB
testcase_27 AC 598 ms
83,708 KB
testcase_28 AC 600 ms
83,840 KB
testcase_29 WA -
testcase_30 AC 602 ms
83,712 KB
testcase_31 AC 576 ms
83,728 KB
testcase_32 AC 615 ms
83,840 KB
testcase_33 AC 583 ms
83,696 KB
testcase_34 AC 568 ms
83,712 KB
testcase_35 AC 565 ms
83,456 KB
testcase_36 AC 603 ms
83,424 KB
testcase_37 AC 558 ms
83,456 KB
testcase_38 AC 561 ms
83,328 KB
testcase_39 WA -
testcase_40 AC 559 ms
83,424 KB
testcase_41 AC 570 ms
83,476 KB
testcase_42 AC 598 ms
83,584 KB
testcase_43 AC 556 ms
83,748 KB
testcase_44 WA -
testcase_45 AC 584 ms
83,764 KB
testcase_46 AC 580 ms
83,584 KB
testcase_47 AC 594 ms
83,476 KB
testcase_48 AC 581 ms
83,328 KB
testcase_49 AC 643 ms
83,712 KB
testcase_50 AC 580 ms
83,840 KB
testcase_51 AC 1,372 ms
83,840 KB
testcase_52 AC 1,313 ms
83,968 KB
testcase_53 AC 1,327 ms
83,840 KB
testcase_54 AC 1,399 ms
84,012 KB
testcase_55 AC 1,325 ms
84,112 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 1,350 ms
84,172 KB
testcase_62 AC 1,277 ms
83,840 KB
testcase_63 AC 1,366 ms
83,864 KB
testcase_64 AC 1,278 ms
83,988 KB
testcase_65 AC 1,331 ms
83,968 KB
testcase_66 AC 1,267 ms
84,224 KB
testcase_67 AC 1,231 ms
83,968 KB
testcase_68 AC 1,350 ms
84,352 KB
testcase_69 AC 1,356 ms
83,948 KB
testcase_70 AC 1,231 ms
84,096 KB
testcase_71 AC 942 ms
84,144 KB
testcase_72 AC 920 ms
83,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
A=list(map(int,input().split()))
C=list(map(int,input().split()))

DP=[[[10**9,-1] for i in range(N)] for j in range(N)]

for i in range(N):
    DP[i][0]=[C[i],C[i]]

for j in range(1,N):
    for i in range(N):
        # DP[i][j]
        # [i,i+j]

        for k in range(j):
            # [i,i+k], [i+k+1,j]
            # DP[i][k], DP[i+k+1][j-k]

            a,b=DP[i][k]
            c,d=DP[(i+k+1)%N][j-k-1]

            #print(j,i,k,a,b,c,d)

            if a==10**9 or c==10**9:
                continue

            if (b<c and c-b>K) or (d<a and a-d>K):
                continue
            else:
                DP[i][j][0]=min(DP[i][j][0],a,c)
                DP[i][j][1]=max(DP[i][j][1],b,d)

            

            
    
S=[0]
for a in A+A:
    S.append(S[-1]+a)

ANS=0
for i in range(N):
    for j in range(N):
        if DP[i][j][1]!=-1:
            ANS=max(ANS,S[i+j+1]-S[i])

print(ANS)
0