結果

問題 No.2656 XOR Slimes
ユーザー minimumminimum
提出日時 2024-03-01 21:45:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,118 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 272,872 KB
最終ジャッジ日時 2024-09-29 13:42:27
合計ジャッジ時間 48,811 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,488 KB
testcase_01 AC 38 ms
52,704 KB
testcase_02 AC 39 ms
53,160 KB
testcase_03 AC 39 ms
52,436 KB
testcase_04 AC 39 ms
53,616 KB
testcase_05 AC 38 ms
53,244 KB
testcase_06 AC 39 ms
52,948 KB
testcase_07 AC 37 ms
52,520 KB
testcase_08 AC 881 ms
271,964 KB
testcase_09 AC 879 ms
272,448 KB
testcase_10 AC 885 ms
271,920 KB
testcase_11 AC 874 ms
272,156 KB
testcase_12 AC 876 ms
271,992 KB
testcase_13 AC 873 ms
272,232 KB
testcase_14 AC 871 ms
271,996 KB
testcase_15 AC 862 ms
271,916 KB
testcase_16 AC 873 ms
271,932 KB
testcase_17 AC 1,098 ms
272,212 KB
testcase_18 AC 1,108 ms
272,132 KB
testcase_19 AC 868 ms
272,100 KB
testcase_20 AC 887 ms
271,928 KB
testcase_21 AC 866 ms
271,888 KB
testcase_22 AC 870 ms
272,208 KB
testcase_23 AC 873 ms
272,400 KB
testcase_24 AC 876 ms
272,096 KB
testcase_25 AC 874 ms
272,352 KB
testcase_26 AC 1,100 ms
271,984 KB
testcase_27 AC 886 ms
271,888 KB
testcase_28 AC 1,106 ms
272,160 KB
testcase_29 AC 872 ms
272,644 KB
testcase_30 AC 881 ms
272,172 KB
testcase_31 AC 872 ms
272,212 KB
testcase_32 AC 881 ms
272,240 KB
testcase_33 AC 884 ms
272,260 KB
testcase_34 AC 890 ms
272,172 KB
testcase_35 AC 872 ms
272,028 KB
testcase_36 AC 881 ms
272,160 KB
testcase_37 AC 883 ms
272,396 KB
testcase_38 AC 890 ms
272,508 KB
testcase_39 AC 894 ms
272,040 KB
testcase_40 AC 1,109 ms
272,056 KB
testcase_41 AC 877 ms
272,232 KB
testcase_42 AC 883 ms
272,512 KB
testcase_43 AC 878 ms
272,244 KB
testcase_44 AC 1,106 ms
272,240 KB
testcase_45 AC 875 ms
272,180 KB
testcase_46 AC 885 ms
271,968 KB
testcase_47 AC 1,106 ms
272,240 KB
testcase_48 AC 878 ms
272,872 KB
testcase_49 AC 871 ms
271,952 KB
testcase_50 AC 1,110 ms
272,112 KB
testcase_51 AC 891 ms
272,304 KB
testcase_52 AC 1,118 ms
271,972 KB
testcase_53 AC 885 ms
272,304 KB
testcase_54 AC 889 ms
272,236 KB
testcase_55 AC 874 ms
272,052 KB
testcase_56 AC 885 ms
272,352 KB
testcase_57 AC 886 ms
272,520 KB
testcase_58 AC 895 ms
272,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

B = [0]
for i in range(N):
    B.append(B[-1] ^ A[i])

dp0 = [[0] * (N + 1) for _ in range(N + 1)]

for d in range(1, N + 1):
    for l in range(N):
        r = l + d
        if r > N:
            continue
        dp0[l][r] = (B[r] ^ B[l]) + X[r - 1] - X[l]

dp = [0] * (N + 1)
for r in range(1, N + 1):
    dp[r] = dp0[0][r]
    for l in range(r):
        dp[r] = min(dp[r], dp[l] + dp0[l][r])


print(dp[-1])
0