結果

問題 No.1209 XOR Into You
ユーザー kumatan400kumatan400
提出日時 2021-10-25 19:27:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,123 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 130,228 KB
最終ジャッジ日時 2024-10-03 15:43:24
合計ジャッジ時間 9,411 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,432 KB
testcase_01 AC 34 ms
52,340 KB
testcase_02 AC 35 ms
53,416 KB
testcase_03 AC 34 ms
53,704 KB
testcase_04 AC 121 ms
117,332 KB
testcase_05 WA -
testcase_06 AC 112 ms
117,308 KB
testcase_07 AC 177 ms
118,580 KB
testcase_08 AC 155 ms
106,196 KB
testcase_09 AC 150 ms
106,248 KB
testcase_10 AC 142 ms
96,632 KB
testcase_11 AC 159 ms
106,184 KB
testcase_12 AC 145 ms
103,184 KB
testcase_13 AC 176 ms
114,232 KB
testcase_14 AC 173 ms
102,512 KB
testcase_15 AC 149 ms
102,996 KB
testcase_16 AC 149 ms
103,016 KB
testcase_17 AC 147 ms
102,420 KB
testcase_18 AC 200 ms
127,944 KB
testcase_19 AC 141 ms
102,876 KB
testcase_20 AC 160 ms
114,384 KB
testcase_21 AC 125 ms
96,508 KB
testcase_22 AC 149 ms
129,736 KB
testcase_23 AC 147 ms
129,744 KB
testcase_24 AC 149 ms
129,848 KB
testcase_25 AC 170 ms
129,996 KB
testcase_26 AC 163 ms
129,868 KB
testcase_27 AC 165 ms
129,992 KB
testcase_28 AC 171 ms
129,992 KB
testcase_29 AC 166 ms
130,228 KB
testcase_30 AC 165 ms
129,744 KB
testcase_31 AC 138 ms
106,148 KB
testcase_32 AC 138 ms
106,176 KB
testcase_33 AC 137 ms
106,036 KB
testcase_34 AC 143 ms
107,040 KB
testcase_35 AC 138 ms
106,176 KB
testcase_36 AC 141 ms
106,008 KB
testcase_37 AC 136 ms
111,988 KB
testcase_38 AC 146 ms
118,344 KB
testcase_39 AC 128 ms
105,956 KB
testcase_40 AC 152 ms
129,808 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()))

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

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

bit = fenwick_tree(N)

M = {}
for b in B2:
    M[b] = []
for i, b in enumerate(B2):
    M[b].append(i)


ans = 0
for i in range(N-2, -1, -1):
    a = A2[i]

    if not a in M or not M[a]:
        print(-1)
        exit()

    p = M[a][-1] + 1

    ans += bit.sum0(p)
    bit.add(p, 1)
    M[a].pop()
print(ans)




0