結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー first_vilfirst_vil
提出日時 2020-07-18 17:41:37
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,153 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 104,464 KB
最終ジャッジ日時 2024-06-01 06:14:01
合計ジャッジ時間 5,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
76,704 KB
testcase_01 AC 39 ms
52,752 KB
testcase_02 AC 39 ms
53,408 KB
testcase_03 AC 153 ms
104,180 KB
testcase_04 AC 166 ms
103,804 KB
testcase_05 AC 152 ms
104,356 KB
testcase_06 AC 143 ms
101,144 KB
testcase_07 AC 162 ms
104,112 KB
testcase_08 AC 74 ms
76,636 KB
testcase_09 AC 113 ms
93,496 KB
testcase_10 AC 144 ms
104,344 KB
testcase_11 AC 39 ms
52,656 KB
testcase_12 AC 163 ms
104,164 KB
testcase_13 AC 164 ms
104,004 KB
testcase_14 AC 165 ms
104,088 KB
testcase_15 RE -
testcase_16 AC 40 ms
53,792 KB
testcase_17 AC 39 ms
53,420 KB
testcase_18 AC 39 ms
52,320 KB
testcase_19 AC 40 ms
53,372 KB
testcase_20 AC 40 ms
52,868 KB
testcase_21 AC 39 ms
53,144 KB
testcase_22 AC 40 ms
52,536 KB
testcase_23 AC 75 ms
76,736 KB
testcase_24 AC 102 ms
84,324 KB
testcase_25 AC 144 ms
101,212 KB
testcase_26 AC 86 ms
78,444 KB
testcase_27 AC 114 ms
87,872 KB
testcase_28 AC 128 ms
93,676 KB
testcase_29 AC 151 ms
101,424 KB
testcase_30 AC 161 ms
103,576 KB
testcase_31 AC 91 ms
80,592 KB
testcase_32 AC 80 ms
77,440 KB
testcase_33 AC 137 ms
104,464 KB
testcase_34 AC 40 ms
53,024 KB
testcase_35 AC 40 ms
52,348 KB
testcase_36 AC 40 ms
52,832 KB
testcase_37 AC 40 ms
53,564 KB
testcase_38 AC 38 ms
53,368 KB
testcase_39 AC 38 ms
53,348 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