結果

問題 No.1209 XOR Into You
ユーザー mkawa2mkawa2
提出日時 2021-07-08 10:47:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 682 ms / 2,000 ms
コード長 1,593 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 47,372 KB
最終ジャッジ日時 2024-07-01 12:28:48
合計ジャッジ時間 22,426 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 35 ms
10,880 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 97 ms
26,008 KB
testcase_05 AC 97 ms
26,144 KB
testcase_06 AC 170 ms
28,768 KB
testcase_07 AC 581 ms
38,780 KB
testcase_08 AC 523 ms
36,252 KB
testcase_09 AC 525 ms
36,152 KB
testcase_10 AC 419 ms
32,160 KB
testcase_11 AC 522 ms
35,980 KB
testcase_12 AC 480 ms
34,272 KB
testcase_13 AC 544 ms
37,372 KB
testcase_14 AC 477 ms
33,740 KB
testcase_15 AC 493 ms
35,004 KB
testcase_16 AC 485 ms
34,616 KB
testcase_17 AC 470 ms
33,572 KB
testcase_18 AC 682 ms
46,396 KB
testcase_19 AC 475 ms
34,476 KB
testcase_20 AC 547 ms
37,404 KB
testcase_21 AC 410 ms
31,640 KB
testcase_22 AC 568 ms
47,020 KB
testcase_23 AC 565 ms
47,020 KB
testcase_24 AC 564 ms
46,788 KB
testcase_25 AC 634 ms
47,140 KB
testcase_26 AC 637 ms
47,260 KB
testcase_27 AC 641 ms
47,308 KB
testcase_28 AC 642 ms
47,372 KB
testcase_29 AC 638 ms
47,308 KB
testcase_30 AC 641 ms
47,304 KB
testcase_31 AC 552 ms
30,776 KB
testcase_32 AC 548 ms
30,868 KB
testcase_33 AC 549 ms
30,776 KB
testcase_34 AC 552 ms
30,672 KB
testcase_35 AC 553 ms
30,904 KB
testcase_36 AC 548 ms
30,776 KB
testcase_37 AC 488 ms
31,500 KB
testcase_38 AC 522 ms
38,660 KB
testcase_39 AC 461 ms
35,856 KB
testcase_40 AC 569 ms
46,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

# 内部で1-indexedに変えるので入力は0-indexedでよい
class BitSum:
    def __init__(self, n):
        self.n = n+1
        self.table = [0]*self.n

    def add(self, i, x):
        i += 1
        while i < self.n:
            self.table[i] += x
            i += i & -i

    # [0,i]の和
    def sum(self, i):
        i += 1
        res = 0
        while i > 0:
            res += self.table[i]
            i -= i & -i
        return res

from collections import defaultdict

n = II()
aa = LI()
bb = LI()

if aa[0] != bb[0] or aa[-1] != bb[-1]:
    print(-1)
    exit()

dd = [a0 ^ a1 for a0, a1 in zip(aa, aa[1:])]
ff = [a0 ^ a1 for a0, a1 in zip(bb, bb[1:])]

if sorted(dd) != sorted(ff):
    print(-1)
    exit()

dtoi = defaultdict(list)
for i, d in enumerate(ff):
    dtoi[d].append(i)

for d in dtoi: dtoi[d].reverse()

ii = [dtoi[d].pop() for d in dd]
bit = BitSum(n)
ans = 0
for j, i in enumerate(ii):
    ans += j-bit.sum(i)
    bit.add(i, 1)

print(ans)
0