結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー itsy68itsy68
提出日時 2022-09-20 21:01:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 117,492 KB
最終ジャッジ日時 2024-06-01 17:03:34
合計ジャッジ時間 6,566 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
77,952 KB
testcase_01 AC 56 ms
62,592 KB
testcase_02 AC 58 ms
62,464 KB
testcase_03 AC 155 ms
110,536 KB
testcase_04 AC 163 ms
117,008 KB
testcase_05 AC 151 ms
110,236 KB
testcase_06 AC 141 ms
104,780 KB
testcase_07 AC 165 ms
117,000 KB
testcase_08 AC 78 ms
77,808 KB
testcase_09 AC 112 ms
93,152 KB
testcase_10 AC 156 ms
116,884 KB
testcase_11 AC 56 ms
63,020 KB
testcase_12 AC 167 ms
117,456 KB
testcase_13 AC 163 ms
117,232 KB
testcase_14 AC 167 ms
117,492 KB
testcase_15 AC 56 ms
63,404 KB
testcase_16 AC 57 ms
63,952 KB
testcase_17 AC 58 ms
62,444 KB
testcase_18 AC 57 ms
63,600 KB
testcase_19 AC 57 ms
63,408 KB
testcase_20 AC 56 ms
62,788 KB
testcase_21 AC 56 ms
63,452 KB
testcase_22 AC 56 ms
63,396 KB
testcase_23 AC 80 ms
78,268 KB
testcase_24 AC 102 ms
88,448 KB
testcase_25 AC 138 ms
104,316 KB
testcase_26 AC 89 ms
80,928 KB
testcase_27 AC 118 ms
88,448 KB
testcase_28 AC 122 ms
92,512 KB
testcase_29 AC 142 ms
105,344 KB
testcase_30 AC 162 ms
115,972 KB
testcase_31 AC 94 ms
82,908 KB
testcase_32 AC 95 ms
79,872 KB
testcase_33 AC 147 ms
110,336 KB
testcase_34 AC 55 ms
63,992 KB
testcase_35 AC 56 ms
63,072 KB
testcase_36 AC 56 ms
63,608 KB
testcase_37 AC 56 ms
63,184 KB
testcase_38 AC 55 ms
62,768 KB
testcase_39 AC 55 ms
63,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import combinations, permutations, product, accumulate, groupby
from collections import defaultdict, deque, Counter
from functools import reduce
import heapq
import bisect
import math
import copy

sys.setrecursionlimit(10 ** 9)
input = lambda: sys.stdin.readline().rstrip()
INF = float("inf")
MOD = 10 ** 9 + 7
# DFS
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')

#https://tjkendev.github.io/procon-library/python/sequence/number_of_inversions.html
N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
d = {}
for i in range(N):
    d[B[i]] = i + 1
adjustedA = []
for i in range(N):
    adjustedA.append(d[A[i]])
# BIT
data = [0]*(N+1)
def add(k, x):
    while k <= N:
      data[k] += x
      k += k & -k
def get(k):
    s = 0
    while k:
        s += data[k]
        k -= k & -k
    return s

ans = 0
for i, a in enumerate(adjustedA):
    ans += (N - 1 - i) - get(a)
    add(a, 1)
print(ans)
0