結果

問題 No.2423 Merge Stones
ユーザー titiatitia
提出日時 2023-08-23 07:10:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 973 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,908 KB
実行使用メモリ 84,664 KB
最終ジャッジ日時 2024-06-01 04:55:34
合計ジャッジ時間 81,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,864 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 39 ms
52,956 KB
testcase_05 AC 44 ms
59,688 KB
testcase_06 AC 45 ms
59,972 KB
testcase_07 WA -
testcase_08 AC 41 ms
54,712 KB
testcase_09 AC 39 ms
52,976 KB
testcase_10 AC 45 ms
60,100 KB
testcase_11 AC 2,326 ms
84,512 KB
testcase_12 AC 786 ms
83,772 KB
testcase_13 AC 877 ms
83,404 KB
testcase_14 AC 875 ms
83,776 KB
testcase_15 AC 849 ms
83,668 KB
testcase_16 AC 855 ms
83,716 KB
testcase_17 AC 854 ms
83,940 KB
testcase_18 AC 838 ms
83,684 KB
testcase_19 AC 892 ms
83,724 KB
testcase_20 AC 872 ms
83,676 KB
testcase_21 AC 841 ms
83,916 KB
testcase_22 AC 790 ms
83,724 KB
testcase_23 AC 747 ms
83,664 KB
testcase_24 AC 738 ms
83,732 KB
testcase_25 AC 783 ms
83,720 KB
testcase_26 AC 795 ms
83,452 KB
testcase_27 AC 904 ms
83,696 KB
testcase_28 AC 802 ms
83,720 KB
testcase_29 WA -
testcase_30 AC 736 ms
83,880 KB
testcase_31 AC 800 ms
83,572 KB
testcase_32 AC 840 ms
83,712 KB
testcase_33 AC 762 ms
83,924 KB
testcase_34 AC 754 ms
83,820 KB
testcase_35 AC 744 ms
83,844 KB
testcase_36 AC 735 ms
84,276 KB
testcase_37 AC 725 ms
83,736 KB
testcase_38 AC 731 ms
83,396 KB
testcase_39 WA -
testcase_40 AC 784 ms
83,528 KB
testcase_41 AC 758 ms
83,860 KB
testcase_42 AC 770 ms
83,684 KB
testcase_43 AC 732 ms
83,796 KB
testcase_44 WA -
testcase_45 AC 737 ms
83,776 KB
testcase_46 AC 813 ms
83,792 KB
testcase_47 AC 716 ms
83,392 KB
testcase_48 AC 773 ms
83,656 KB
testcase_49 AC 710 ms
83,408 KB
testcase_50 AC 711 ms
84,028 KB
testcase_51 AC 2,223 ms
83,736 KB
testcase_52 AC 2,198 ms
84,372 KB
testcase_53 AC 2,259 ms
84,152 KB
testcase_54 AC 2,245 ms
84,260 KB
testcase_55 AC 2,072 ms
83,996 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 2,372 ms
84,504 KB
testcase_62 AC 2,200 ms
83,860 KB
testcase_63 AC 2,058 ms
84,020 KB
testcase_64 AC 2,229 ms
84,048 KB
testcase_65 AC 2,195 ms
84,060 KB
testcase_66 AC 2,069 ms
84,276 KB
testcase_67 AC 2,087 ms
84,664 KB
testcase_68 AC 2,326 ms
84,528 KB
testcase_69 AC 2,287 ms
84,364 KB
testcase_70 AC 2,097 ms
84,196 KB
testcase_71 AC 1,402 ms
83,952 KB
testcase_72 AC 1,223 ms
84,216 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