結果

問題 No.1209 XOR Into You
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-11 23:03:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 1,528 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 135,588 KB
最終ジャッジ日時 2024-07-18 10:13:09
合計ジャッジ時間 8,965 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,528 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 40 ms
54,072 KB
testcase_03 AC 36 ms
54,528 KB
testcase_04 AC 75 ms
93,696 KB
testcase_05 AC 76 ms
93,608 KB
testcase_06 AC 110 ms
121,524 KB
testcase_07 AC 167 ms
124,860 KB
testcase_08 AC 156 ms
117,136 KB
testcase_09 AC 153 ms
117,784 KB
testcase_10 AC 134 ms
101,976 KB
testcase_11 AC 160 ms
116,336 KB
testcase_12 AC 147 ms
112,104 KB
testcase_13 AC 169 ms
118,944 KB
testcase_14 AC 149 ms
111,700 KB
testcase_15 AC 145 ms
112,452 KB
testcase_16 AC 141 ms
112,440 KB
testcase_17 AC 141 ms
111,788 KB
testcase_18 AC 187 ms
134,072 KB
testcase_19 AC 148 ms
112,188 KB
testcase_20 AC 163 ms
118,976 KB
testcase_21 AC 127 ms
101,692 KB
testcase_22 AC 152 ms
135,272 KB
testcase_23 AC 155 ms
135,324 KB
testcase_24 AC 152 ms
135,588 KB
testcase_25 AC 172 ms
135,264 KB
testcase_26 AC 173 ms
135,476 KB
testcase_27 AC 176 ms
134,920 KB
testcase_28 AC 170 ms
134,944 KB
testcase_29 AC 177 ms
135,424 KB
testcase_30 AC 180 ms
135,312 KB
testcase_31 AC 145 ms
111,856 KB
testcase_32 AC 145 ms
111,848 KB
testcase_33 AC 150 ms
111,672 KB
testcase_34 AC 145 ms
111,876 KB
testcase_35 AC 147 ms
111,916 KB
testcase_36 AC 143 ms
112,228 KB
testcase_37 AC 140 ms
117,028 KB
testcase_38 AC 156 ms
124,688 KB
testcase_39 AC 138 ms
116,008 KB
testcase_40 AC 154 ms
135,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


class fenwick_tree(object):
    def __init__(self, n):
        self.n = n
        self.log = n.bit_length()
        self.data = [0] * n

    def __sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s

    def add(self, p, x):
        """ a[p] += xを行う"""
        p += 1
        while p <= self.n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, l, r):
        """a[l] + a[l+1] + .. + a[r-1]を返す"""
        return self.__sum(r) - self.__sum(l)

    def lower_bound(self, x):
        """a[0] + a[1] + .. a[i] >= x となる最小のiを返す"""
        if x <= 0:
            return -1
        i = 0
        k = 1 << self.log
        while k:
            if i + k <= self.n and self.data[i + k - 1] < x:
                x -= self.data[i + k - 1]
                i += k
            k >>= 1
        return i


def main():
    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]:
        return -1
    A = [a ^ b for a, b in zip(A[:-1], A[1:])]
    B = [a ^ b for a, b in zip(B[:-1], B[1:])]
    btoi = defaultdict(list)
    for i, b in enumerate(B):
        btoi[b].append(i)

    ans = 0
    bit = fenwick_tree(len(A))
    for a in reversed(A):
        if not btoi[a]:
            return - 1
        i = btoi[a].pop()
        ans += bit.sum(0, i)
        bit.add(i, 1)
    return ans


print(main())
0