結果

問題 No.2423 Merge Stones
ユーザー miya145592miya145592
提出日時 2023-08-13 02:40:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,383 ms / 4,000 ms
コード長 1,132 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 78,184 KB
最終ジャッジ日時 2024-04-30 21:11:05
合計ジャッジ時間 69,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,500 KB
testcase_01 AC 45 ms
63,632 KB
testcase_02 AC 47 ms
62,984 KB
testcase_03 AC 45 ms
61,948 KB
testcase_04 AC 35 ms
52,524 KB
testcase_05 AC 41 ms
61,608 KB
testcase_06 AC 44 ms
63,140 KB
testcase_07 AC 44 ms
62,540 KB
testcase_08 AC 35 ms
53,612 KB
testcase_09 AC 35 ms
53,140 KB
testcase_10 AC 45 ms
64,032 KB
testcase_11 AC 2,254 ms
77,936 KB
testcase_12 AC 201 ms
76,884 KB
testcase_13 AC 1,026 ms
76,868 KB
testcase_14 AC 605 ms
76,700 KB
testcase_15 AC 559 ms
76,900 KB
testcase_16 AC 900 ms
76,884 KB
testcase_17 AC 619 ms
76,932 KB
testcase_18 AC 884 ms
76,996 KB
testcase_19 AC 194 ms
77,116 KB
testcase_20 AC 606 ms
76,740 KB
testcase_21 AC 1,002 ms
76,808 KB
testcase_22 AC 572 ms
76,596 KB
testcase_23 AC 531 ms
76,864 KB
testcase_24 AC 535 ms
76,944 KB
testcase_25 AC 536 ms
76,748 KB
testcase_26 AC 542 ms
76,756 KB
testcase_27 AC 752 ms
76,688 KB
testcase_28 AC 1,023 ms
76,808 KB
testcase_29 AC 861 ms
76,836 KB
testcase_30 AC 600 ms
76,584 KB
testcase_31 AC 582 ms
76,864 KB
testcase_32 AC 1,018 ms
77,232 KB
testcase_33 AC 550 ms
76,604 KB
testcase_34 AC 760 ms
76,920 KB
testcase_35 AC 577 ms
76,764 KB
testcase_36 AC 589 ms
76,928 KB
testcase_37 AC 537 ms
76,876 KB
testcase_38 AC 543 ms
76,948 KB
testcase_39 AC 1,011 ms
76,940 KB
testcase_40 AC 884 ms
76,880 KB
testcase_41 AC 736 ms
76,876 KB
testcase_42 AC 1,024 ms
76,864 KB
testcase_43 AC 194 ms
76,896 KB
testcase_44 AC 1,014 ms
77,328 KB
testcase_45 AC 539 ms
76,596 KB
testcase_46 AC 749 ms
76,780 KB
testcase_47 AC 555 ms
76,772 KB
testcase_48 AC 542 ms
76,608 KB
testcase_49 AC 194 ms
77,084 KB
testcase_50 AC 193 ms
76,936 KB
testcase_51 AC 1,911 ms
77,820 KB
testcase_52 AC 1,840 ms
78,152 KB
testcase_53 AC 2,240 ms
78,100 KB
testcase_54 AC 1,777 ms
78,180 KB
testcase_55 AC 2,312 ms
78,108 KB
testcase_56 AC 904 ms
76,972 KB
testcase_57 AC 908 ms
76,996 KB
testcase_58 AC 1,051 ms
77,180 KB
testcase_59 AC 1,040 ms
76,704 KB
testcase_60 AC 901 ms
77,248 KB
testcase_61 AC 2,040 ms
77,980 KB
testcase_62 AC 2,295 ms
78,036 KB
testcase_63 AC 2,292 ms
77,980 KB
testcase_64 AC 2,220 ms
77,828 KB
testcase_65 AC 2,275 ms
77,936 KB
testcase_66 AC 2,001 ms
77,932 KB
testcase_67 AC 2,383 ms
78,184 KB
testcase_68 AC 1,984 ms
78,100 KB
testcase_69 AC 2,178 ms
77,944 KB
testcase_70 AC 2,114 ms
77,964 KB
testcase_71 AC 1,527 ms
77,996 KB
testcase_72 AC 1,698 ms
78,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
C = list(map(int, input().split()))
dp = [[0 for _ in range(N)] for _ in range(N)]
for i in range(N):
    dp[i][i] = 1<<C[i]

for k in range(N-1):
    for i in range(N):
        for j in range(min(k+1, N-k-1)):
            for l in range(K+1):
                p = dp[i][(i+k)%N]
                q = dp[(i+k+1)%N][(i+k+1+j)%N]
                if (p>>l)&q:
                    dp[i][(i+k+1+j)%N] |= (p>>l)&q | (((p>>l)&q)<<l)
                if p&(q>>l):
                    dp[i][(i+k+1+j)%N] |= p&(q>>l) | ((p&(q>>l))<<l)

                q = dp[(i-1-j)%N][(i-1)%N]
                if (p>>l)&q:
                    dp[(i-1-j)%N][(i+k)%N] |= (p>>l)&q | (((p>>l)&q)<<l)
                if p&(q>>l):
                    dp[(i-1-j)%N][(i+k)%N] |= p&(q>>l) | ((p&(q>>l))<<l)


#print(dp)

AA = A+A
S = [0]
for a in AA:
    S.append(S[-1]+a)
#print(S)
ans = 0
for i in range(N):
    for j in range(N):
        if dp[i][j]==0:
            continue
        if i>j:
            ans = max(ans, S[j+1+N]-S[i])
        else:
            ans = max(ans, S[j+1]-S[i])
print(ans)
0