結果

問題 No.1300 Sum of Inversions
ユーザー とりゐとりゐ
提出日時 2022-11-10 00:39:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,273 ms / 2,000 ms
コード長 1,742 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 125,580 KB
最終ジャッジ日時 2024-07-23 05:27:59
合計ジャッジ時間 34,961 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,340 KB
testcase_01 AC 38 ms
54,000 KB
testcase_02 AC 38 ms
53,444 KB
testcase_03 AC 1,016 ms
113,784 KB
testcase_04 AC 918 ms
113,508 KB
testcase_05 AC 825 ms
104,320 KB
testcase_06 AC 1,095 ms
112,536 KB
testcase_07 AC 1,083 ms
111,748 KB
testcase_08 AC 1,184 ms
113,692 KB
testcase_09 AC 1,204 ms
113,240 KB
testcase_10 AC 681 ms
102,128 KB
testcase_11 AC 685 ms
102,204 KB
testcase_12 AC 980 ms
113,612 KB
testcase_13 AC 979 ms
113,476 KB
testcase_14 AC 1,255 ms
125,580 KB
testcase_15 AC 1,201 ms
113,280 KB
testcase_16 AC 1,061 ms
114,212 KB
testcase_17 AC 709 ms
100,528 KB
testcase_18 AC 747 ms
101,888 KB
testcase_19 AC 883 ms
110,344 KB
testcase_20 AC 904 ms
110,136 KB
testcase_21 AC 916 ms
110,396 KB
testcase_22 AC 814 ms
104,324 KB
testcase_23 AC 1,122 ms
112,548 KB
testcase_24 AC 835 ms
103,668 KB
testcase_25 AC 773 ms
102,160 KB
testcase_26 AC 769 ms
101,840 KB
testcase_27 AC 813 ms
103,996 KB
testcase_28 AC 1,273 ms
113,872 KB
testcase_29 AC 920 ms
110,520 KB
testcase_30 AC 1,163 ms
113,700 KB
testcase_31 AC 818 ms
104,204 KB
testcase_32 AC 850 ms
103,832 KB
testcase_33 AC 786 ms
118,312 KB
testcase_34 AC 791 ms
125,184 KB
testcase_35 AC 773 ms
120,924 KB
testcase_36 AC 779 ms
125,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class segtree():
  def __init__(self,init,func,ide):
    self.n=len(init)
    self.func=func
    self.ide=ide
    self.size=1<<(self.n-1).bit_length()
    self.tree=[self.ide for i in range(2*self.size)]
    for i in range(self.n):
      self.tree[self.size+i]=init[i]
    for i in range(self.size-1,0,-1):
      self.tree[i]=self.func(self.tree[2*i], self.tree[2*i|1])
  
  def update(self,k,x):
    k+=self.size
    self.tree[k]=x
    k>>=1
    while k:
      self.tree[k]=self.func(self.tree[2*k],self.tree[k*2|1])
      k>>=1
  
  def get(self,i):
    return self.tree[i+self.size]
  
  def query(self,l,r):
    l+=self.size
    r+=self.size
    l_res=self.ide
    r_res=self.ide
    while l<r:
      if l&1:
        l_res=self.func(l_res,self.tree[l])
        l+=1
      if r&1:
        r-=1
        r_res=self.func(self.tree[r],r_res)
      l>>=1
      r>>=1
    return self.func(l_res,r_res)
  
  def debug(self,s=10):
    print([self.get(i) for i in range(min(self.n,s))])

from sys import stdin
input=lambda :stdin.readline()[:-1]

n=int(input())
a=list(map(int,input().split()))

mod=998244353

right1=[0]*n
right2=[0]*n
seg1=segtree([0]*n,lambda x,y:x+y,0)
seg2=segtree([0]*n,lambda x,y:(x+y)%mod,0)

c=[(a[i],i) for i in range(n)]
c.sort(key=lambda x:x[0])
for ai,i in c:
  right1[i]=seg1.query(i,n)
  right2[i]=seg2.query(i,n)
  seg1.update(i,1)
  seg2.update(i,ai)

left1=[0]*n
left2=[0]*n
seg1=segtree([0]*n,lambda x,y:x+y,0)
seg2=segtree([0]*n,lambda x,y:(x+y)%mod,0)

c=c[::-1]
for ai,i in c:
  left1[i]=seg1.query(0,i)
  left2[i]=seg2.query(0,i)
  seg1.update(i,1)
  seg2.update(i,ai)

ans=0
for i in range(n):
  ans+=left1[i]*right2[i]+left2[i]*right1[i]
  ans%=mod
  ans+=a[i]*left1[i]%mod*right1[i]
  ans%=mod

print(ans)
0