結果

問題 No.1209 XOR Into You
ユーザー etdvucur8oetdvucur8o
提出日時 2024-07-15 07:26:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 1,142 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 161,712 KB
最終ジャッジ日時 2024-07-15 07:26:13
合計ジャッジ時間 12,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,396 KB
testcase_01 AC 42 ms
54,800 KB
testcase_02 AC 43 ms
54,760 KB
testcase_03 AC 44 ms
55,668 KB
testcase_04 AC 91 ms
93,504 KB
testcase_05 AC 90 ms
93,288 KB
testcase_06 AC 155 ms
94,736 KB
testcase_07 AC 280 ms
150,952 KB
testcase_08 AC 256 ms
142,080 KB
testcase_09 AC 260 ms
142,984 KB
testcase_10 AC 218 ms
127,948 KB
testcase_11 AC 257 ms
140,760 KB
testcase_12 AC 241 ms
134,772 KB
testcase_13 AC 268 ms
145,308 KB
testcase_14 AC 237 ms
132,628 KB
testcase_15 AC 244 ms
135,388 KB
testcase_16 AC 245 ms
134,608 KB
testcase_17 AC 235 ms
132,608 KB
testcase_18 AC 321 ms
158,216 KB
testcase_19 AC 242 ms
134,812 KB
testcase_20 AC 266 ms
145,332 KB
testcase_21 AC 207 ms
127,768 KB
testcase_22 AC 240 ms
161,528 KB
testcase_23 AC 237 ms
161,712 KB
testcase_24 AC 233 ms
161,708 KB
testcase_25 AC 306 ms
161,700 KB
testcase_26 AC 281 ms
161,188 KB
testcase_27 AC 279 ms
161,208 KB
testcase_28 AC 280 ms
161,204 KB
testcase_29 AC 297 ms
161,400 KB
testcase_30 AC 284 ms
161,636 KB
testcase_31 AC 190 ms
107,440 KB
testcase_32 AC 191 ms
107,540 KB
testcase_33 AC 193 ms
107,564 KB
testcase_34 AC 193 ms
108,032 KB
testcase_35 AC 213 ms
107,284 KB
testcase_36 AC 189 ms
107,560 KB
testcase_37 AC 153 ms
105,244 KB
testcase_38 AC 247 ms
150,404 KB
testcase_39 AC 225 ms
140,824 KB
testcase_40 AC 248 ms
161,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class fenwick_tree():
    n=1
    data=[0 for i in range(n)]
    def __init__(self,N):
        self.n=N
        self.data=[0 for i in range(N)]
    def add(self,p,x):
        assert 0<=p<self.n,"0<=p<n,p={0},n={1}".format(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 and l<=r and r<=self.n),"0<=l<=r<=n,l={0},r={1},n={2}".format(l,r,self.n)
        return self.sum0(r)-self.sum0(l)
    def sum0(self,r):
        s=0
        while(r>0):
            s+=self.data[r-1]
            r-=r&-r
        return s

import collections

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

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

A = [A[i]^A[i+1] for i in range(N-1)]
B = [B[i]^B[i+1] for i in range(N-1)]

if sorted(A) != sorted(B):
    print(-1)
    exit()

C = collections.defaultdict(collections.deque)
for i, b in enumerate(B):
    C[b].append(i)

X = []
for a in A:
    X.append(C[a].popleft())

G = fenwick_tree(N-1)
ans = 0
for x in X[::-1]:
    ans += G.sum0(x)
    G.add(x, 1)

print(ans)
0