結果

問題 No.1209 XOR Into You
ユーザー 37zigen37zigen
提出日時 2020-08-31 13:16:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 756 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 120,392 KB
最終ジャッジ日時 2024-11-15 20:49:14
合計ジャッジ時間 9,870 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 124 ms
107,676 KB
testcase_05 AC 124 ms
107,904 KB
testcase_06 AC 125 ms
107,924 KB
testcase_07 AC 200 ms
110,704 KB
testcase_08 AC 182 ms
100,864 KB
testcase_09 AC 181 ms
100,352 KB
testcase_10 AC 156 ms
96,000 KB
testcase_11 AC 178 ms
100,608 KB
testcase_12 AC 168 ms
99,072 KB
testcase_13 AC 185 ms
100,224 KB
testcase_14 AC 167 ms
98,688 KB
testcase_15 AC 173 ms
98,944 KB
testcase_16 AC 168 ms
99,328 KB
testcase_17 AC 167 ms
98,560 KB
testcase_18 AC 228 ms
118,604 KB
testcase_19 AC 174 ms
98,944 KB
testcase_20 AC 194 ms
108,216 KB
testcase_21 AC 157 ms
96,640 KB
testcase_22 AC 171 ms
120,148 KB
testcase_23 AC 170 ms
120,136 KB
testcase_24 AC 173 ms
120,364 KB
testcase_25 AC 189 ms
119,952 KB
testcase_26 AC 189 ms
119,828 KB
testcase_27 AC 189 ms
119,952 KB
testcase_28 AC 187 ms
119,968 KB
testcase_29 AC 198 ms
120,208 KB
testcase_30 AC 195 ms
119,960 KB
testcase_31 AC 161 ms
98,304 KB
testcase_32 AC 161 ms
98,432 KB
testcase_33 AC 159 ms
98,304 KB
testcase_34 AC 162 ms
98,008 KB
testcase_35 AC 159 ms
98,304 KB
testcase_36 AC 159 ms
98,816 KB
testcase_37 AC 150 ms
102,660 KB
testcase_38 AC 172 ms
110,508 KB
testcase_39 AC 155 ms
100,096 KB
testcase_40 AC 173 ms
120,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

MOD=10**9+7

class BIT():
    def __init__(self,n):
        self.n=n
        self.a=[0]*(n+1)

    def add(self,k,v):
        while k<=self.n:
            self.a[k]+=v
            k+=k&-k

    def sum(self,k):
        ret=0
        while k>0:
            ret+=self.a[k]
            k-=k&-k
        return ret

N=int(input())
A=list(map(int,input().split()))+[0]
B=list(map(int,input().split()))+[0]
A=[A[i+1]^A[i] for i in range(0,N)]
B=[B[i+1]^B[i] for i in range(0,N)]
bit=BIT(N)
m=dict()
for b in B:
    m[b]=[]
for i,b in enumerate(B):
    m[b].append(i)
ans=0
for i in range(N-1,-1,-1):
    a=A[i]
    if a not in m or len(m[a])==0:
        exit(print(-1))
    p=m[a][-1]
    ans+=bit.sum(p+1)
    bit.add(p+1,1)
    m[a].pop()
print(ans)
0