結果

問題 No.2656 XOR Slimes
ユーザー flygonflygon
提出日時 2024-03-01 22:11:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 732 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 273,232 KB
最終ジャッジ日時 2024-09-29 14:09:33
合計ジャッジ時間 32,269 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,304 KB
testcase_01 AC 41 ms
54,464 KB
testcase_02 AC 42 ms
56,156 KB
testcase_03 AC 42 ms
54,432 KB
testcase_04 AC 37 ms
55,844 KB
testcase_05 AC 36 ms
56,024 KB
testcase_06 AC 39 ms
55,044 KB
testcase_07 AC 36 ms
55,524 KB
testcase_08 AC 581 ms
272,644 KB
testcase_09 AC 542 ms
272,716 KB
testcase_10 AC 594 ms
272,476 KB
testcase_11 AC 587 ms
272,480 KB
testcase_12 AC 589 ms
273,104 KB
testcase_13 AC 532 ms
272,684 KB
testcase_14 AC 574 ms
272,540 KB
testcase_15 AC 547 ms
272,988 KB
testcase_16 AC 546 ms
272,680 KB
testcase_17 AC 726 ms
272,632 KB
testcase_18 AC 717 ms
273,164 KB
testcase_19 AC 541 ms
272,624 KB
testcase_20 AC 542 ms
272,876 KB
testcase_21 AC 567 ms
273,188 KB
testcase_22 AC 588 ms
272,496 KB
testcase_23 AC 544 ms
272,880 KB
testcase_24 AC 555 ms
272,936 KB
testcase_25 AC 544 ms
272,728 KB
testcase_26 AC 712 ms
272,924 KB
testcase_27 AC 580 ms
272,696 KB
testcase_28 AC 723 ms
272,992 KB
testcase_29 AC 587 ms
273,148 KB
testcase_30 AC 553 ms
272,892 KB
testcase_31 AC 548 ms
272,640 KB
testcase_32 AC 545 ms
272,780 KB
testcase_33 AC 585 ms
272,884 KB
testcase_34 AC 553 ms
272,696 KB
testcase_35 AC 585 ms
272,708 KB
testcase_36 AC 590 ms
272,804 KB
testcase_37 AC 579 ms
272,900 KB
testcase_38 AC 549 ms
273,048 KB
testcase_39 AC 542 ms
273,080 KB
testcase_40 AC 711 ms
272,540 KB
testcase_41 AC 585 ms
272,920 KB
testcase_42 AC 588 ms
272,920 KB
testcase_43 AC 556 ms
272,736 KB
testcase_44 AC 721 ms
272,708 KB
testcase_45 AC 609 ms
272,620 KB
testcase_46 AC 613 ms
273,068 KB
testcase_47 AC 726 ms
273,232 KB
testcase_48 AC 584 ms
273,044 KB
testcase_49 AC 579 ms
272,680 KB
testcase_50 AC 707 ms
272,508 KB
testcase_51 AC 543 ms
272,612 KB
testcase_52 AC 732 ms
272,668 KB
testcase_53 AC 597 ms
272,636 KB
testcase_54 AC 652 ms
272,500 KB
testcase_55 AC 628 ms
272,980 KB
testcase_56 AC 577 ms
272,804 KB
testcase_57 AC 558 ms
272,612 KB
testcase_58 AC 594 ms
272,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n = int(input())
x = list(map(int,input().split()))
a = list(map(int,input().split()))

sum = [[0]*n for i in range(n)]
for l in range(n):
    now = 0
    for r in range(l, n):
        now ^= a[r]
        sum[l][r] = now + x[r] - x[l]
dp = [10**15]*(n+1)
dp[0] = 0
for i in range(1, n+1):
    for j in range(1,i+1):
        tmp = sum[j-1][i-1]        
        dp[i] = min(dp[i],tmp+dp[j-1])

print(dp[-1])
0