結果

問題 No.2656 XOR Slimes
ユーザー miya145592miya145592
提出日時 2024-03-01 23:21:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 598 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 86,652 KB
最終ジャッジ日時 2024-09-29 15:13:36
合計ジャッジ時間 23,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,120 KB
testcase_01 AC 38 ms
52,840 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 39 ms
53,820 KB
testcase_04 AC 38 ms
52,564 KB
testcase_05 AC 37 ms
53,268 KB
testcase_06 AC 38 ms
52,884 KB
testcase_07 AC 39 ms
52,740 KB
testcase_08 AC 299 ms
80,420 KB
testcase_09 AC 493 ms
82,048 KB
testcase_10 AC 326 ms
81,756 KB
testcase_11 AC 503 ms
83,212 KB
testcase_12 AC 514 ms
83,052 KB
testcase_13 AC 344 ms
82,560 KB
testcase_14 AC 332 ms
83,048 KB
testcase_15 AC 288 ms
81,276 KB
testcase_16 AC 560 ms
86,652 KB
testcase_17 AC 388 ms
85,520 KB
testcase_18 AC 333 ms
81,892 KB
testcase_19 AC 409 ms
85,952 KB
testcase_20 AC 378 ms
83,932 KB
testcase_21 AC 527 ms
81,896 KB
testcase_22 AC 485 ms
82,268 KB
testcase_23 AC 359 ms
83,640 KB
testcase_24 AC 370 ms
85,760 KB
testcase_25 AC 545 ms
84,060 KB
testcase_26 AC 505 ms
83,988 KB
testcase_27 AC 390 ms
85,460 KB
testcase_28 AC 494 ms
82,600 KB
testcase_29 AC 392 ms
86,004 KB
testcase_30 AC 488 ms
83,592 KB
testcase_31 AC 562 ms
85,016 KB
testcase_32 AC 347 ms
84,784 KB
testcase_33 AC 503 ms
84,184 KB
testcase_34 AC 494 ms
81,756 KB
testcase_35 AC 349 ms
82,632 KB
testcase_36 AC 274 ms
80,584 KB
testcase_37 AC 294 ms
80,768 KB
testcase_38 AC 580 ms
86,620 KB
testcase_39 AC 526 ms
84,492 KB
testcase_40 AC 535 ms
84,848 KB
testcase_41 AC 372 ms
85,560 KB
testcase_42 AC 455 ms
81,516 KB
testcase_43 AC 470 ms
81,872 KB
testcase_44 AC 502 ms
84,508 KB
testcase_45 AC 598 ms
86,192 KB
testcase_46 AC 317 ms
81,864 KB
testcase_47 AC 316 ms
82,392 KB
testcase_48 AC 468 ms
81,860 KB
testcase_49 AC 306 ms
83,024 KB
testcase_50 AC 486 ms
82,416 KB
testcase_51 AC 529 ms
84,652 KB
testcase_52 AC 296 ms
80,892 KB
testcase_53 AC 468 ms
81,324 KB
testcase_54 AC 275 ms
80,976 KB
testcase_55 AC 293 ms
80,952 KB
testcase_56 AC 302 ms
81,996 KB
testcase_57 AC 290 ms
81,284 KB
testcase_58 AC 422 ms
80,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input = sys.stdin.readline
N = int(input())
X = list(map(int, input().split()))
A = list(map(int, input().split()))
S = [0]
for a in A:
    S.append(S[-1]^a)
INF = sum(A)
dp3 = [INF for _ in range(N)]
stack = [(0, 0)]
while stack:
    sco, i = heapq.heappop(stack)
    if i>=1 and dp3[i-1]<sco:
        continue
    for j in range(i, N):
        if sco+(S[j+1]^S[i])+(X[j]-X[i]) < dp3[j]:
            dp3[j] = sco+(S[j+1]^S[i])+(X[j]-X[i])
            heapq.heappush(stack, (dp3[j], j+1))
print(dp3[-1])
0