結果

問題 No.1300 Sum of Inversions
ユーザー shakayamishakayami
提出日時 2020-11-27 21:52:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 932 ms / 2,000 ms
コード長 1,565 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 112,904 KB
最終ジャッジ日時 2024-07-26 12:23:00
合計ジャッジ時間 24,004 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
class fenwick_tree():
    n=1
    data=[0 for i in range(n)]
    def __init__(self,N):
        self.n=N
        self.data=[0 for i in range(N)]
    def add(self,p,x):
        assert 0<=p<self.n,"0<=p<n,p={0},n={1}".format(p,self.n)
        p+=1
        while(p<=self.n):
            self.data[p-1]+=x
            p+=p& -p
    def sum(self,l,r):
        assert (0<=l and l<=r and r<=self.n),"0<=l<=r<=n,l={0},r={1},n={2}".format(l,r,self.n)
        return self.sum0(r)-self.sum0(l)
    def sum0(self,r):
        s=0
        while(r>0):
            s+=self.data[r-1]
            r-=r&-r
        return s

N=int(input())
A=[int(i) for i in input().split()]
B=sorted([(A[i],i) for i in range(N)])
I=[B[i][1] for i in range(N)]
GL=fenwick_tree(N)
GR=fenwick_tree(N)
SL=fenwick_tree(N)
SR=fenwick_tree(N)
GL0=[0 for i in range(N)]
GR0=[0 for i in range(N)]
SL0=[0 for i in range(N)]
SR0=[0 for i in range(N)]
for i in range(N-1,-1,-1):
    GL0[I[i]]=GL.sum(0,I[i])
    SL0[I[i]]=SL.sum(0,I[i])
    GL.add(I[i],1)
    SL.add(I[i],A[I[i]])
for i in range(N):
    GR0[I[i]]=GR.sum(I[i],N)
    SR0[I[i]]=SR.sum(I[i],N)
    GR.add(I[i],1)
    SR.add(I[i],A[I[i]])
L=defaultdict(int)
R=defaultdict(int)
'''
for i in range(N-1,-1,-1):
    GL0[i]-=L[A[i]]
    SL0[i]-=A[i]*L[A[i]]
    L[A[i]]+=1
for i in range(N):
    GR0[i]-=R[A[i]]
    SR0[i]-=A[i]*R[A[i]]
    R[A[i]]+=1

print(GL0)
print(GR0)
print(SL0)
print(SR0)
'''
ans=0
mod=998244353
for i in range(N):
    ans+=GL0[i]*SR0[i]+SL0[i]*GR0[i]+A[i]*GL0[i]*GR0[i]
    ans%=mod
print(ans)
0