結果

問題 No.1209 XOR Into You
ユーザー salmon0852salmon0852
提出日時 2022-08-12 17:04:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 750 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 46,736 KB
最終ジャッジ日時 2024-09-22 19:24:36
合計ジャッジ時間 24,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 107 ms
26,080 KB
testcase_05 AC 110 ms
25,960 KB
testcase_06 AC 283 ms
46,732 KB
testcase_07 AC 641 ms
38,848 KB
testcase_08 AC 580 ms
36,580 KB
testcase_09 AC 575 ms
36,612 KB
testcase_10 AC 462 ms
32,128 KB
testcase_11 AC 574 ms
36,084 KB
testcase_12 AC 539 ms
34,496 KB
testcase_13 AC 611 ms
37,920 KB
testcase_14 AC 525 ms
34,368 KB
testcase_15 AC 546 ms
34,912 KB
testcase_16 AC 549 ms
34,764 KB
testcase_17 AC 505 ms
34,088 KB
testcase_18 AC 750 ms
45,564 KB
testcase_19 AC 543 ms
34,584 KB
testcase_20 AC 604 ms
37,336 KB
testcase_21 AC 449 ms
31,504 KB
testcase_22 AC 697 ms
46,704 KB
testcase_23 AC 694 ms
46,352 KB
testcase_24 AC 700 ms
46,656 KB
testcase_25 AC 728 ms
46,608 KB
testcase_26 AC 733 ms
46,608 KB
testcase_27 AC 735 ms
46,584 KB
testcase_28 AC 727 ms
46,604 KB
testcase_29 AC 731 ms
46,736 KB
testcase_30 AC 735 ms
46,220 KB
testcase_31 AC 663 ms
31,268 KB
testcase_32 AC 665 ms
31,036 KB
testcase_33 AC 675 ms
31,036 KB
testcase_34 AC 663 ms
31,044 KB
testcase_35 AC 660 ms
31,036 KB
testcase_36 AC 667 ms
31,164 KB
testcase_37 AC 601 ms
33,064 KB
testcase_38 AC 580 ms
38,468 KB
testcase_39 AC 518 ms
35,856 KB
testcase_40 AC 691 ms
46,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
a = [int(i) for i in input().split()]
b = [int(i) for i in input().split()]

if a[0] != b[0] or a[-1] != b[-1]:
    print(-1)
    exit()

xa, xb = [], []
for i in range(n-1):
    xa.append(a[i] ^ a[i+1])
    xb.append(b[i] ^ b[i+1])

d = defaultdict(list)
for i, x in enumerate(xb): d[x].append(i)

max_n = 1
while max_n < n - 1: max_n <<= 1
bit = [0] * (max_n + 1)

def add(i):
    while i <= max_n:
        bit[i] += 1
        i += (~i + 1) & i

def query(i):
    res = 0
    while i > 0:
        res += bit[i]
        i -= (~i + 1) & i
    return res

ans = 0
for x in xa[::-1]:
    x = xa.pop()
    if not d[x]:
        ans = -1
        break
    
    i = d[x].pop() + 1
    ans += query(i)
    add(i)
print(ans)

0