結果

問題 No.1209 XOR Into You
ユーザー salmon0852salmon0852
提出日時 2022-08-12 16:51:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 701 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 46,300 KB
最終ジャッジ日時 2024-09-22 19:13:33
合計ジャッジ時間 25,275 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 277 ms
46,084 KB
testcase_05 WA -
testcase_06 AC 280 ms
46,236 KB
testcase_07 AC 645 ms
38,056 KB
testcase_08 AC 588 ms
36,832 KB
testcase_09 AC 585 ms
35,728 KB
testcase_10 AC 489 ms
31,984 KB
testcase_11 AC 580 ms
35,308 KB
testcase_12 AC 542 ms
33,856 KB
testcase_13 AC 609 ms
37,088 KB
testcase_14 AC 519 ms
33,388 KB
testcase_15 AC 557 ms
34,260 KB
testcase_16 AC 548 ms
34,184 KB
testcase_17 AC 521 ms
33,184 KB
testcase_18 AC 763 ms
45,576 KB
testcase_19 AC 543 ms
34,048 KB
testcase_20 AC 613 ms
37,960 KB
testcase_21 AC 453 ms
31,652 KB
testcase_22 AC 696 ms
46,300 KB
testcase_23 AC 699 ms
46,252 KB
testcase_24 AC 701 ms
45,956 KB
testcase_25 AC 729 ms
46,132 KB
testcase_26 AC 728 ms
46,072 KB
testcase_27 AC 735 ms
46,288 KB
testcase_28 AC 736 ms
46,172 KB
testcase_29 AC 745 ms
46,276 KB
testcase_30 AC 732 ms
46,084 KB
testcase_31 AC 664 ms
30,152 KB
testcase_32 AC 662 ms
30,148 KB
testcase_33 AC 659 ms
30,052 KB
testcase_34 AC 660 ms
30,024 KB
testcase_35 AC 659 ms
30,188 KB
testcase_36 AC 655 ms
30,060 KB
testcase_37 AC 604 ms
32,284 KB
testcase_38 AC 591 ms
37,816 KB
testcase_39 AC 523 ms
35,664 KB
testcase_40 AC 700 ms
46,128 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()]

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
while xa:
    x = xa.pop()
    if not d[x]:
        ans = -1
        break
    
    i = d[x].pop() + 1
    ans += query(i)
    add(i)
print(ans)
0