結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー hirakuhiraku
提出日時 2021-05-24 21:34:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 943 ms / 2,000 ms
コード長 1,367 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 105,852 KB
最終ジャッジ日時 2024-10-13 05:50:54
合計ジャッジ時間 16,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
18,144 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 756 ms
90,272 KB
testcase_04 AC 916 ms
104,668 KB
testcase_05 AC 773 ms
90,032 KB
testcase_06 AC 694 ms
83,636 KB
testcase_07 AC 898 ms
104,060 KB
testcase_08 AC 58 ms
15,648 KB
testcase_09 AC 406 ms
64,444 KB
testcase_10 AC 769 ms
105,468 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 943 ms
105,852 KB
testcase_13 AC 928 ms
105,576 KB
testcase_14 AC 939 ms
105,724 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 27 ms
10,496 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 27 ms
10,752 KB
testcase_21 AC 27 ms
10,496 KB
testcase_22 AC 28 ms
10,624 KB
testcase_23 AC 82 ms
18,308 KB
testcase_24 AC 291 ms
43,744 KB
testcase_25 AC 641 ms
79,680 KB
testcase_26 AC 151 ms
27,208 KB
testcase_27 AC 375 ms
52,680 KB
testcase_28 AC 502 ms
67,196 KB
testcase_29 AC 701 ms
83,956 KB
testcase_30 AC 880 ms
101,148 KB
testcase_31 AC 207 ms
33,808 KB
testcase_32 AC 138 ms
25,452 KB
testcase_33 AC 636 ms
91,368 KB
testcase_34 AC 28 ms
10,752 KB
testcase_35 AC 29 ms
10,752 KB
testcase_36 AC 28 ms
10,496 KB
testcase_37 AC 30 ms
10,752 KB
testcase_38 AC 28 ms
10,624 KB
testcase_39 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter

# 2つの数列 隣接swap 一致させる 要素に重複なし


# 転倒数
def mergeCount(A):
    cnt = 0
    n = len(A)
    if n > 1:
        A1 = A[:n >> 1]
        A2 = A[n >> 1:]
        cnt += mergeCount(A1)
        cnt += mergeCount(A2)
        i1 = 0
        i2 = 0
        for i in range(n):
            if i2 == len(A2):
                A[i] = A1[i1]
                i1 += 1
            elif i1 == len(A1):
                A[i] = A2[i2]
                i2 += 1
            elif A1[i1] <= A2[i2]:
                A[i] = A1[i1]
                i1 += 1
            else:
                A[i] = A2[i2]
                i2 += 1
                cnt += n//2 - i1
    return cnt


n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

if Counter(A) != Counter(B):
    print(-1)
    exit()

# print(A)
# print(B)

# A[i] = B[s_i] となるような配列 S (s_0, s_1, ,,,)を考える
# A[i], B[i]で要素の値が等しいものが複数あるときは、i < j, s_i < s_jとなるように決める
# 決定したSに対して転倒数を求める

# Bの要素の値ごとの位置を調べる
pos = defaultdict(deque)
for itr, b in enumerate(B):
    pos[b].append(itr)

S = []
for a in A:
    p = pos[a].popleft()
    S.append(p)
# print(S)

print(mergeCount(S))
0