結果

問題 No.1209 XOR Into You
ユーザー kumatan400kumatan400
提出日時 2023-02-03 02:32:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 1,141 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 161,780 KB
最終ジャッジ日時 2024-07-02 11:22:37
合計ジャッジ時間 10,709 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,284 KB
testcase_01 AC 36 ms
52,464 KB
testcase_02 AC 37 ms
54,052 KB
testcase_03 AC 39 ms
54,632 KB
testcase_04 AC 76 ms
96,864 KB
testcase_05 AC 74 ms
96,916 KB
testcase_06 AC 114 ms
97,036 KB
testcase_07 AC 240 ms
149,292 KB
testcase_08 AC 208 ms
138,032 KB
testcase_09 AC 214 ms
138,220 KB
testcase_10 AC 188 ms
129,220 KB
testcase_11 AC 213 ms
137,264 KB
testcase_12 AC 201 ms
132,336 KB
testcase_13 AC 225 ms
144,372 KB
testcase_14 AC 205 ms
130,732 KB
testcase_15 AC 210 ms
133,304 KB
testcase_16 AC 211 ms
133,036 KB
testcase_17 AC 208 ms
130,940 KB
testcase_18 AC 278 ms
158,784 KB
testcase_19 AC 206 ms
132,652 KB
testcase_20 AC 234 ms
144,376 KB
testcase_21 AC 187 ms
127,996 KB
testcase_22 AC 205 ms
161,656 KB
testcase_23 AC 209 ms
161,764 KB
testcase_24 AC 198 ms
161,632 KB
testcase_25 AC 240 ms
161,648 KB
testcase_26 AC 246 ms
161,780 KB
testcase_27 AC 252 ms
161,656 KB
testcase_28 AC 243 ms
161,472 KB
testcase_29 AC 240 ms
161,608 KB
testcase_30 AC 247 ms
161,456 KB
testcase_31 AC 165 ms
105,228 KB
testcase_32 AC 158 ms
105,512 KB
testcase_33 AC 164 ms
104,996 KB
testcase_34 AC 161 ms
106,492 KB
testcase_35 AC 163 ms
105,128 KB
testcase_36 AC 166 ms
105,120 KB
testcase_37 AC 133 ms
104,332 KB
testcase_38 AC 216 ms
149,208 KB
testcase_39 AC 192 ms
136,936 KB
testcase_40 AC 202 ms
161,624 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] 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()

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

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

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

print(ans)
0