結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー mkawa2mkawa2
提出日時 2020-07-17 21:59:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 521 ms / 2,000 ms
コード長 1,312 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 31,776 KB
最終ジャッジ日時 2024-11-29 23:45:21
合計ジャッジ時間 10,015 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
13,184 KB
testcase_01 AC 37 ms
11,520 KB
testcase_02 AC 38 ms
11,648 KB
testcase_03 AC 436 ms
26,940 KB
testcase_04 AC 513 ms
31,776 KB
testcase_05 AC 423 ms
26,244 KB
testcase_06 AC 394 ms
24,760 KB
testcase_07 AC 502 ms
31,736 KB
testcase_08 AC 56 ms
12,544 KB
testcase_09 AC 260 ms
23,000 KB
testcase_10 AC 444 ms
31,092 KB
testcase_11 AC 38 ms
11,520 KB
testcase_12 AC 515 ms
30,972 KB
testcase_13 AC 517 ms
31,156 KB
testcase_14 AC 521 ms
31,148 KB
testcase_15 AC 38 ms
11,520 KB
testcase_16 AC 38 ms
11,392 KB
testcase_17 AC 37 ms
11,520 KB
testcase_18 AC 37 ms
11,520 KB
testcase_19 AC 37 ms
11,392 KB
testcase_20 AC 37 ms
11,520 KB
testcase_21 AC 37 ms
11,392 KB
testcase_22 AC 37 ms
11,520 KB
testcase_23 AC 69 ms
13,056 KB
testcase_24 AC 186 ms
17,972 KB
testcase_25 AC 384 ms
23,576 KB
testcase_26 AC 107 ms
14,828 KB
testcase_27 AC 227 ms
21,824 KB
testcase_28 AC 304 ms
23,548 KB
testcase_29 AC 404 ms
25,340 KB
testcase_30 AC 470 ms
30,976 KB
testcase_31 AC 137 ms
17,084 KB
testcase_32 AC 98 ms
14,848 KB
testcase_33 AC 393 ms
26,596 KB
testcase_34 AC 37 ms
11,392 KB
testcase_35 AC 37 ms
11,520 KB
testcase_36 AC 37 ms
11,520 KB
testcase_37 AC 38 ms
11,520 KB
testcase_38 AC 37 ms
11,520 KB
testcase_39 AC 38 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
from itertools import *
from bisect import *
from collections import *
from heapq import *
from fractions import Fraction
import sys

sys.setrecursionlimit(10 ** 6)

def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def SI(): return sys.stdin.readline()[:-1]
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
int1 = lambda x: int(x) - 1
def MI1(): return map(int1, sys.stdin.readline().split())
def LI1(): return list(map(int1, sys.stdin.readline().split()))
p2D = lambda x: print(*x, sep="\n")
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

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

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

n=II()
aa=LI()
bb=LI()
atoi={b:i for i,b in enumerate(bb)}
aa=[atoi[a] for a in aa]
bit=BitSum(n)
ans=0
for i,a in enumerate(aa):
    ans+=i-bit.sum(a)
    bit.add(a,1)
print(ans)
0