結果

問題 No.1209 XOR Into You
ユーザー 瀬良奈々葉瀬良奈々葉
提出日時 2024-10-17 20:49:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 1,167 bytes
コンパイル時間 822 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 162,712 KB
最終ジャッジ日時 2024-10-17 20:49:22
合計ジャッジ時間 12,206 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,412 KB
testcase_01 AC 36 ms
54,636 KB
testcase_02 AC 36 ms
55,524 KB
testcase_03 AC 35 ms
55,124 KB
testcase_04 AC 107 ms
94,612 KB
testcase_05 AC 110 ms
94,564 KB
testcase_06 AC 110 ms
94,456 KB
testcase_07 AC 233 ms
151,580 KB
testcase_08 AC 235 ms
143,100 KB
testcase_09 AC 213 ms
143,604 KB
testcase_10 AC 174 ms
127,588 KB
testcase_11 AC 217 ms
141,672 KB
testcase_12 AC 219 ms
134,760 KB
testcase_13 AC 223 ms
145,904 KB
testcase_14 AC 218 ms
133,644 KB
testcase_15 AC 207 ms
136,036 KB
testcase_16 AC 206 ms
135,356 KB
testcase_17 AC 201 ms
133,060 KB
testcase_18 AC 267 ms
159,124 KB
testcase_19 AC 230 ms
135,156 KB
testcase_20 AC 225 ms
145,880 KB
testcase_21 AC 178 ms
127,488 KB
testcase_22 AC 212 ms
162,108 KB
testcase_23 AC 216 ms
162,328 KB
testcase_24 AC 212 ms
162,712 KB
testcase_25 AC 277 ms
162,088 KB
testcase_26 AC 244 ms
162,212 KB
testcase_27 AC 256 ms
162,092 KB
testcase_28 AC 248 ms
162,404 KB
testcase_29 AC 246 ms
162,288 KB
testcase_30 AC 275 ms
162,272 KB
testcase_31 AC 171 ms
108,720 KB
testcase_32 AC 171 ms
108,084 KB
testcase_33 AC 178 ms
108,720 KB
testcase_34 AC 173 ms
109,052 KB
testcase_35 AC 174 ms
108,728 KB
testcase_36 AC 206 ms
109,184 KB
testcase_37 AC 138 ms
106,568 KB
testcase_38 AC 221 ms
151,096 KB
testcase_39 AC 205 ms
141,204 KB
testcase_40 AC 213 ms
162,348 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()))


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

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

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

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

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

G = fenwick_tree(N)
ans = 0
for a in A:
    ans += G.sum(a+1, N)
    G.add(a, 1)

print(ans)
    
    
    
    
    
0