結果

問題 No.1209 XOR Into You
ユーザー kumatan400kumatan400
提出日時 2022-12-07 17:20:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 1,204 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 166,448 KB
最終ジャッジ日時 2024-10-13 22:46:44
合計ジャッジ時間 11,653 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
66,944 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 66 ms
66,944 KB
testcase_03 AC 68 ms
67,072 KB
testcase_04 AC 88 ms
96,640 KB
testcase_05 AC 88 ms
96,768 KB
testcase_06 AC 131 ms
104,396 KB
testcase_07 AC 300 ms
151,508 KB
testcase_08 AC 278 ms
140,200 KB
testcase_09 AC 276 ms
140,556 KB
testcase_10 AC 243 ms
128,192 KB
testcase_11 AC 279 ms
138,424 KB
testcase_12 AC 258 ms
134,796 KB
testcase_13 AC 288 ms
145,884 KB
testcase_14 AC 255 ms
133,884 KB
testcase_15 AC 262 ms
135,872 KB
testcase_16 AC 262 ms
135,344 KB
testcase_17 AC 258 ms
133,148 KB
testcase_18 AC 334 ms
163,124 KB
testcase_19 AC 260 ms
135,412 KB
testcase_20 AC 284 ms
146,368 KB
testcase_21 AC 241 ms
127,196 KB
testcase_22 AC 265 ms
166,448 KB
testcase_23 AC 264 ms
166,188 KB
testcase_24 AC 270 ms
166,092 KB
testcase_25 AC 307 ms
166,380 KB
testcase_26 AC 308 ms
166,124 KB
testcase_27 AC 303 ms
166,344 KB
testcase_28 AC 308 ms
166,048 KB
testcase_29 AC 313 ms
166,176 KB
testcase_30 AC 309 ms
166,240 KB
testcase_31 AC 216 ms
110,876 KB
testcase_32 AC 209 ms
110,664 KB
testcase_33 AC 212 ms
110,664 KB
testcase_34 AC 210 ms
112,056 KB
testcase_35 AC 211 ms
110,916 KB
testcase_36 AC 233 ms
110,916 KB
testcase_37 AC 177 ms
111,148 KB
testcase_38 AC 273 ms
150,796 KB
testcase_39 AC 252 ms
137,996 KB
testcase_40 AC 270 ms
166,344 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()

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

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

import queue
Z = {}
g = 0
for y in Y:
    if not y in Z:
        Z[y] = queue.deque([g])
        g += 1
    else:
        Z[y].append(g)
        g += 1


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

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