結果

問題 No.1209 XOR Into You
ユーザー e4q2pfnqe4q2pfnq
提出日時 2023-08-07 19:10:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 1,122 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 162,160 KB
最終ジャッジ日時 2024-11-08 00:11:50
合計ジャッジ時間 12,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,016 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 47 ms
54,016 KB
testcase_03 AC 46 ms
54,016 KB
testcase_04 AC 98 ms
97,024 KB
testcase_05 AC 97 ms
97,024 KB
testcase_06 AC 135 ms
97,024 KB
testcase_07 AC 292 ms
149,364 KB
testcase_08 AC 269 ms
137,916 KB
testcase_09 AC 269 ms
138,468 KB
testcase_10 AC 227 ms
128,892 KB
testcase_11 AC 268 ms
137,516 KB
testcase_12 AC 249 ms
132,752 KB
testcase_13 AC 278 ms
144,164 KB
testcase_14 AC 250 ms
131,108 KB
testcase_15 AC 258 ms
133,308 KB
testcase_16 AC 257 ms
132,908 KB
testcase_17 AC 251 ms
130,936 KB
testcase_18 AC 336 ms
158,704 KB
testcase_19 AC 251 ms
132,660 KB
testcase_20 AC 277 ms
144,552 KB
testcase_21 AC 227 ms
128,304 KB
testcase_22 AC 252 ms
162,160 KB
testcase_23 AC 245 ms
161,724 KB
testcase_24 AC 247 ms
161,896 KB
testcase_25 AC 289 ms
161,644 KB
testcase_26 AC 288 ms
161,656 KB
testcase_27 AC 288 ms
161,672 KB
testcase_28 AC 289 ms
161,612 KB
testcase_29 AC 284 ms
161,868 KB
testcase_30 AC 287 ms
161,856 KB
testcase_31 AC 199 ms
105,188 KB
testcase_32 AC 199 ms
105,312 KB
testcase_33 AC 203 ms
105,440 KB
testcase_34 AC 201 ms
106,816 KB
testcase_35 AC 202 ms
105,316 KB
testcase_36 AC 203 ms
105,700 KB
testcase_37 AC 162 ms
104,260 KB
testcase_38 AC 258 ms
149,012 KB
testcase_39 AC 236 ms
137,068 KB
testcase_40 AC 251 ms
161,776 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

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

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


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

if sorted(X) != sorted(Y):
    print(-1)
    exit()

import collections
C = collections.defaultdict(collections.deque)
for i, y in enumerate(Y):
    C[y].append(i)

Z = []
for x in X:
    Z.append(C[x].popleft())

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

print(ans)
0