結果

問題 No.2423 Merge Stones
ユーザー titiatitia
提出日時 2023-08-24 01:04:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,114 ms / 4,000 ms
コード長 838 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-06-01 22:30:32
合計ジャッジ時間 56,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 42 ms
61,440 KB
testcase_02 AC 41 ms
61,184 KB
testcase_03 AC 40 ms
60,928 KB
testcase_04 AC 33 ms
52,224 KB
testcase_05 AC 39 ms
60,416 KB
testcase_06 AC 41 ms
61,440 KB
testcase_07 AC 40 ms
61,184 KB
testcase_08 AC 38 ms
53,376 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 42 ms
61,696 KB
testcase_11 AC 1,066 ms
76,544 KB
testcase_12 AC 294 ms
73,984 KB
testcase_13 AC 1,114 ms
77,048 KB
testcase_14 AC 738 ms
76,420 KB
testcase_15 AC 798 ms
76,928 KB
testcase_16 AC 954 ms
76,960 KB
testcase_17 AC 703 ms
76,544 KB
testcase_18 AC 950 ms
76,608 KB
testcase_19 AC 290 ms
73,728 KB
testcase_20 AC 735 ms
76,416 KB
testcase_21 AC 1,049 ms
76,836 KB
testcase_22 AC 711 ms
76,616 KB
testcase_23 AC 783 ms
77,056 KB
testcase_24 AC 801 ms
77,056 KB
testcase_25 AC 784 ms
76,416 KB
testcase_26 AC 792 ms
76,544 KB
testcase_27 AC 830 ms
76,488 KB
testcase_28 AC 1,037 ms
76,932 KB
testcase_29 AC 959 ms
76,604 KB
testcase_30 AC 706 ms
76,672 KB
testcase_31 AC 694 ms
76,636 KB
testcase_32 AC 1,047 ms
76,928 KB
testcase_33 AC 788 ms
76,628 KB
testcase_34 AC 850 ms
76,544 KB
testcase_35 AC 709 ms
76,752 KB
testcase_36 AC 705 ms
76,560 KB
testcase_37 AC 794 ms
76,676 KB
testcase_38 AC 774 ms
76,564 KB
testcase_39 AC 1,040 ms
76,756 KB
testcase_40 AC 951 ms
76,672 KB
testcase_41 AC 833 ms
76,580 KB
testcase_42 AC 1,034 ms
76,628 KB
testcase_43 AC 275 ms
74,368 KB
testcase_44 AC 1,036 ms
76,648 KB
testcase_45 AC 771 ms
76,928 KB
testcase_46 AC 818 ms
76,776 KB
testcase_47 AC 774 ms
76,928 KB
testcase_48 AC 785 ms
76,800 KB
testcase_49 AC 283 ms
74,240 KB
testcase_50 AC 285 ms
74,112 KB
testcase_51 AC 960 ms
76,780 KB
testcase_52 AC 979 ms
76,848 KB
testcase_53 AC 1,053 ms
76,620 KB
testcase_54 AC 955 ms
76,508 KB
testcase_55 AC 1,058 ms
76,640 KB
testcase_56 AC 962 ms
76,664 KB
testcase_57 AC 948 ms
76,672 KB
testcase_58 AC 1,061 ms
76,928 KB
testcase_59 AC 1,051 ms
76,800 KB
testcase_60 AC 952 ms
76,800 KB
testcase_61 AC 1,069 ms
76,800 KB
testcase_62 AC 1,042 ms
76,832 KB
testcase_63 AC 1,051 ms
76,800 KB
testcase_64 AC 1,046 ms
76,560 KB
testcase_65 AC 1,047 ms
76,648 KB
testcase_66 AC 1,050 ms
76,896 KB
testcase_67 AC 1,041 ms
76,800 KB
testcase_68 AC 1,050 ms
76,816 KB
testcase_69 AC 1,054 ms
76,544 KB
testcase_70 AC 1,060 ms
76,800 KB
testcase_71 AC 1,057 ms
76,936 KB
testcase_72 AC 1,047 ms
76,784 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=[[0]*N for i in range(N)]

for i in range(N):
    DP[i][0]=1<<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=DP[i][k]
            b=DP[(i+k+1)%N][j-k-1]

            ANS=0

            for l in range(K+1):
                ANS|=(a&(b<<l))
                ANS|=(a&(b>>l))
                ANS|=(b&(a<<l))
                ANS|=(b&(a>>l))

            DP[i][j]|=ANS
            
    
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]!=0:
            ANS=max(ANS,S[i+j+1]-S[i])

print(ANS)
0