結果

問題 No.1209 XOR Into You
ユーザー rlangevinrlangevin
提出日時 2023-11-08 12:06:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 1,438 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 145,464 KB
最終ジャッジ日時 2024-09-25 23:39:30
合計ジャッジ時間 10,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 45 ms
53,760 KB
testcase_03 AC 45 ms
53,888 KB
testcase_04 AC 153 ms
131,800 KB
testcase_05 AC 170 ms
131,884 KB
testcase_06 AC 143 ms
131,532 KB
testcase_07 AC 255 ms
143,052 KB
testcase_08 AC 233 ms
136,996 KB
testcase_09 AC 235 ms
137,636 KB
testcase_10 AC 204 ms
121,540 KB
testcase_11 AC 239 ms
135,960 KB
testcase_12 AC 215 ms
134,180 KB
testcase_13 AC 256 ms
138,512 KB
testcase_14 AC 223 ms
133,836 KB
testcase_15 AC 225 ms
134,424 KB
testcase_16 AC 224 ms
134,212 KB
testcase_17 AC 219 ms
133,868 KB
testcase_18 AC 282 ms
145,464 KB
testcase_19 AC 227 ms
134,188 KB
testcase_20 AC 256 ms
138,448 KB
testcase_21 AC 202 ms
121,288 KB
testcase_22 AC 230 ms
142,904 KB
testcase_23 AC 227 ms
142,924 KB
testcase_24 AC 223 ms
142,920 KB
testcase_25 AC 276 ms
143,052 KB
testcase_26 AC 268 ms
143,032 KB
testcase_27 AC 264 ms
142,912 KB
testcase_28 AC 257 ms
142,940 KB
testcase_29 AC 274 ms
143,180 KB
testcase_30 AC 256 ms
143,064 KB
testcase_31 AC 187 ms
113,996 KB
testcase_32 AC 186 ms
114,124 KB
testcase_33 AC 180 ms
114,120 KB
testcase_34 AC 181 ms
114,348 KB
testcase_35 AC 190 ms
114,116 KB
testcase_36 AC 190 ms
114,248 KB
testcase_37 AC 174 ms
122,436 KB
testcase_38 AC 230 ms
144,544 KB
testcase_39 AC 214 ms
136,004 KB
testcase_40 AC 221 ms
142,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

class Fenwick_Tree:
    def __init__(self, n):
        self._n = n
        self.data = [0] * n
 
    def add(self, p, x):
        assert 0 <= p < self._n
        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p
 
    def sum(self, l, r):
        assert 0 <= l <= r <= self._n
        return self._sum(r) - self._sum(l)
 
    def _sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s
    
    def get(self, k):
        k += 1
        x, r = 0, 1
        while r < self._n:
            r <<= 1
        len = r
        while len:
            if x + len - 1 < self._n:
                if self.data[x + len - 1] < k:
                    k -= self.data[x + len - 1]
                    x += len
            len >>= 1
        return x

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
DA, DB = [], []
for i in range(N - 1):
    DA.append(A[i+1]^A[i])
    DB.append(B[i+1]^B[i])

if Counter(DA) != Counter(DB) or A[0] != B[0] or A[-1] != B[-1]:
    print(-1)
    exit()

ind = defaultdict(list)
C = []
for i in range(N-1):
    ind[DA[i]].append(i)

for k, v in ind.items():
    ind[k].reverse()

for i in range(N-1):
    C.append(ind[DB[i]].pop())

T = Fenwick_Tree(N - 1)
ans = 0
for i in range(N - 1):
    ans += T.sum(C[i], N - 1)
    T.add(C[i], 1)

print(ans)
0