結果
問題 | No.1115 二つの数列 / Two Sequences |
ユーザー | first_vil |
提出日時 | 2020-07-18 17:46:04 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 185 ms / 2,000 ms |
コード長 | 1,149 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 106,112 KB |
最終ジャッジ日時 | 2024-11-30 21:55:58 |
合計ジャッジ時間 | 5,922 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 87 ms
76,672 KB |
testcase_01 | AC | 42 ms
51,968 KB |
testcase_02 | AC | 42 ms
52,352 KB |
testcase_03 | AC | 165 ms
102,400 KB |
testcase_04 | AC | 183 ms
103,552 KB |
testcase_05 | AC | 170 ms
102,528 KB |
testcase_06 | AC | 161 ms
99,584 KB |
testcase_07 | AC | 179 ms
103,808 KB |
testcase_08 | AC | 89 ms
76,160 KB |
testcase_09 | AC | 127 ms
92,800 KB |
testcase_10 | AC | 158 ms
103,936 KB |
testcase_11 | AC | 42 ms
51,840 KB |
testcase_12 | AC | 183 ms
103,936 KB |
testcase_13 | AC | 182 ms
103,680 KB |
testcase_14 | AC | 185 ms
104,192 KB |
testcase_15 | AC | 43 ms
51,840 KB |
testcase_16 | AC | 42 ms
51,968 KB |
testcase_17 | AC | 42 ms
52,096 KB |
testcase_18 | AC | 44 ms
52,480 KB |
testcase_19 | AC | 44 ms
52,352 KB |
testcase_20 | AC | 42 ms
52,096 KB |
testcase_21 | AC | 43 ms
51,968 KB |
testcase_22 | AC | 43 ms
52,352 KB |
testcase_23 | AC | 90 ms
76,416 KB |
testcase_24 | AC | 115 ms
83,712 KB |
testcase_25 | AC | 153 ms
98,816 KB |
testcase_26 | AC | 100 ms
78,208 KB |
testcase_27 | AC | 126 ms
86,784 KB |
testcase_28 | AC | 142 ms
92,416 KB |
testcase_29 | AC | 163 ms
99,584 KB |
testcase_30 | AC | 182 ms
106,112 KB |
testcase_31 | AC | 106 ms
79,744 KB |
testcase_32 | AC | 94 ms
77,056 KB |
testcase_33 | AC | 151 ms
102,400 KB |
testcase_34 | AC | 42 ms
52,224 KB |
testcase_35 | AC | 42 ms
52,096 KB |
testcase_36 | AC | 43 ms
52,096 KB |
testcase_37 | AC | 43 ms
52,224 KB |
testcase_38 | AC | 42 ms
52,096 KB |
testcase_39 | AC | 42 ms
52,096 KB |
ソースコード
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()