結果

問題 No.1300 Sum of Inversions
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-19 20:27:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,956 KB
実行使用メモリ 178,268 KB
最終ジャッジ日時 2024-09-19 20:28:08
合計ジャッジ時間 17,711 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,064 KB
testcase_01 AC 34 ms
52,280 KB
testcase_02 AC 36 ms
53,380 KB
testcase_03 AC 495 ms
129,680 KB
testcase_04 AC 511 ms
129,388 KB
testcase_05 AC 409 ms
130,376 KB
testcase_06 AC 547 ms
135,004 KB
testcase_07 AC 534 ms
134,964 KB
testcase_08 AC 593 ms
147,756 KB
testcase_09 AC 622 ms
147,652 KB
testcase_10 AC 349 ms
133,524 KB
testcase_11 AC 355 ms
133,912 KB
testcase_12 AC 513 ms
129,184 KB
testcase_13 AC 481 ms
128,796 KB
testcase_14 AC 659 ms
178,268 KB
testcase_15 AC 590 ms
147,668 KB
testcase_16 AC 519 ms
130,084 KB
testcase_17 AC 354 ms
128,040 KB
testcase_18 AC 406 ms
134,636 KB
testcase_19 AC 443 ms
126,304 KB
testcase_20 AC 469 ms
126,368 KB
testcase_21 AC 456 ms
126,860 KB
testcase_22 AC 422 ms
131,708 KB
testcase_23 AC 575 ms
134,484 KB
testcase_24 AC 410 ms
128,012 KB
testcase_25 AC 389 ms
134,608 KB
testcase_26 AC 371 ms
133,980 KB
testcase_27 AC 413 ms
135,176 KB
testcase_28 AC 676 ms
154,340 KB
testcase_29 AC 453 ms
126,688 KB
testcase_30 AC 617 ms
148,032 KB
testcase_31 AC 424 ms
130,136 KB
testcase_32 AC 422 ms
128,264 KB
testcase_33 AC 238 ms
109,948 KB
testcase_34 AC 276 ms
105,924 KB
testcase_35 AC 371 ms
144,548 KB
testcase_36 AC 392 ms
177,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class FenwickTree:
  def __init__(self,n):
    self.n=n
    self.st=[0]*n
  
  def add(self,p,x):
    p+=1
    while p<=self.n:
      self.st[p-1]+=x
      p+=p&(-p)
  
  def sum(self,l,r):
    return self._sum(r)-self._sum(l)
  
  def _sum(self,p):
    a=0
    while p>0:
      a+=self.st[p-1]
      p-=p&(-p)
    return a


n=int(input())
a=list(map(int,input().split()))
z=sorted(set(a+[-1,10**10]))
d={v:i for i,v in enumerate(z)}
M=998244353

lc=[0]*n
ls=[0]*n
stc=FenwickTree(len(z))
sts=FenwickTree(len(z))
for i in range(n):
  v=a[i]
  l=d[v]+1
  r=len(z)-1
  lc[i]=stc.sum(l,r+1)
  ls[i]=sts.sum(l,r+1)
  stc.add(d[v],1)
  sts.add(d[v],v)

rc=[0]*n
rs=[0]*n
stc=FenwickTree(len(z))
sts=FenwickTree(len(z))
for i in reversed(range(n)):
  v=a[i]
  l=0
  r=d[v]-1
  rc[i]=stc.sum(l,r+1)
  rs[i]=sts.sum(l,r+1)
  stc.add(d[v],1)
  sts.add(d[v],v)

print(sum(ls[i]*rc[i]+lc[i]*a[i]*rc[i]+lc[i]*rs[i] for i in range(n))%M)
0