結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー first_vilfirst_vil
提出日時 2020-07-18 17:46:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 1,149 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,600 KB
最終ジャッジ日時 2024-05-08 00:38:23
合計ジャッジ時間 5,215 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
76,672 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 142 ms
102,784 KB
testcase_04 AC 170 ms
103,936 KB
testcase_05 AC 145 ms
102,784 KB
testcase_06 AC 141 ms
99,840 KB
testcase_07 AC 159 ms
103,936 KB
testcase_08 AC 81 ms
76,288 KB
testcase_09 AC 115 ms
92,672 KB
testcase_10 AC 146 ms
104,192 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 157 ms
103,808 KB
testcase_13 AC 149 ms
103,936 KB
testcase_14 AC 153 ms
104,064 KB
testcase_15 AC 36 ms
52,352 KB
testcase_16 AC 36 ms
52,352 KB
testcase_17 AC 37 ms
52,096 KB
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 39 ms
52,224 KB
testcase_20 AC 39 ms
52,096 KB
testcase_21 AC 36 ms
52,480 KB
testcase_22 AC 38 ms
52,096 KB
testcase_23 AC 79 ms
76,672 KB
testcase_24 AC 104 ms
83,840 KB
testcase_25 AC 135 ms
99,072 KB
testcase_26 AC 91 ms
78,208 KB
testcase_27 AC 112 ms
87,296 KB
testcase_28 AC 126 ms
93,056 KB
testcase_29 AC 150 ms
99,584 KB
testcase_30 AC 156 ms
105,600 KB
testcase_31 AC 92 ms
80,000 KB
testcase_32 AC 85 ms
77,312 KB
testcase_33 AC 137 ms
102,656 KB
testcase_34 AC 39 ms
52,480 KB
testcase_35 AC 36 ms
52,480 KB
testcase_36 AC 36 ms
52,096 KB
testcase_37 AC 35 ms
52,096 KB
testcase_38 AC 39 ms
51,968 KB
testcase_39 AC 38 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class segtree:
    def __init__(self,_n):
        self.n=1
        while self.n<_n:
            self.n<<=1
        self.dat=[0]*(self.n<<1)
        for i in range(self.n-1,0,-1):
            self.dat[i]=self.dat[i<<1]+self.dat[i<<1|1]
    def update(self,k,a):
        k+=self.n
        self.dat[k]+=a
        while 1<k:
            k>>=1
            self.dat[k]=self.dat[k<<1]+self.dat[k<<1|1]
    def value(self,l,r):
        res=0
        l+=self.n
        r+=self.n
        while l<r:
            if l&1:
                res+=self.dat[l]
                l+=1
            if r&1:
                r-=1
                res+=self.dat[r]
            l>>=1
            r>>=1
        return res

def main():
    import sys
    input=sys.stdin.readline
    n=int(input())
    a=(lambda x:[i-1 for i in x])(list(map(int,input().split())))
    b=(lambda x:[i-1 for i in x])(list(map(int,input().split())))
    p=[0]*n
    for i in range(n):
        p[b[i]]=i
    for i in range(n):
        a[i]=p[a[i]]
    ans=0
    seg=segtree(n)
    for i in a:
        ans+=seg.value(i+1,n)
        seg.update(i,1)
    print(ans)

if __name__ == '__main__':
    main()
0