結果

問題 No.1300 Sum of Inversions
ユーザー googol_S0googol_S0
提出日時 2020-11-27 21:33:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 831 ms / 2,000 ms
コード長 885 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 199,284 KB
最終ジャッジ日時 2024-07-26 11:48:40
合計ジャッジ時間 21,267 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,692 KB
testcase_01 AC 38 ms
53,236 KB
testcase_02 AC 37 ms
53,016 KB
testcase_03 AC 625 ms
143,956 KB
testcase_04 AC 604 ms
134,216 KB
testcase_05 AC 506 ms
132,088 KB
testcase_06 AC 697 ms
162,864 KB
testcase_07 AC 667 ms
151,224 KB
testcase_08 AC 745 ms
167,672 KB
testcase_09 AC 740 ms
167,208 KB
testcase_10 AC 427 ms
125,184 KB
testcase_11 AC 438 ms
124,856 KB
testcase_12 AC 625 ms
143,620 KB
testcase_13 AC 602 ms
133,508 KB
testcase_14 AC 831 ms
199,284 KB
testcase_15 AC 747 ms
167,372 KB
testcase_16 AC 653 ms
144,380 KB
testcase_17 AC 412 ms
119,932 KB
testcase_18 AC 476 ms
125,640 KB
testcase_19 AC 551 ms
126,756 KB
testcase_20 AC 572 ms
127,776 KB
testcase_21 AC 560 ms
128,000 KB
testcase_22 AC 504 ms
131,920 KB
testcase_23 AC 690 ms
162,868 KB
testcase_24 AC 516 ms
131,148 KB
testcase_25 AC 440 ms
125,476 KB
testcase_26 AC 430 ms
125,152 KB
testcase_27 AC 482 ms
132,012 KB
testcase_28 AC 762 ms
176,768 KB
testcase_29 AC 537 ms
128,128 KB
testcase_30 AC 731 ms
167,708 KB
testcase_31 AC 514 ms
131,992 KB
testcase_32 AC 507 ms
131,676 KB
testcase_33 AC 345 ms
133,572 KB
testcase_34 AC 370 ms
129,616 KB
testcase_35 AC 427 ms
153,116 KB
testcase_36 AC 513 ms
198,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Binit(B,siz):
  while len(B)<siz+1:
    B.append(0)
  while len(B)>siz+1:
    del B[-1]
  for i in range(siz+1):
    B[i]=0
  B.append(siz)

def Badd(B,a,x):
  z=a
  while z<=B[-1]:
    B[z]+=x
    z+=(z&(-z))

def Bsum(B,a):
  r=0
  z=a
  while z>0:
    r+=B[z]
    z-=(z&(-z))
  return r

def Bssum(B,a,b):
  return Bsum(B,max(a,b))-Bsum(B,min(a,b)-1)

BIT=[]
BC=[]
N=int(input())
A=list(map(int,input().split()))
Binit(BIT,N+1)
Binit(BC,N+1)
D=dict()
B=sorted(set(A))
for i in range(len(B)):
  D[B[i]]=i+1
C=[0]*N
Z=[0]*N
X=0
for i in range(N):
  C[i]=X-Bsum(BIT,D[A[i]])+(i-Bsum(BC,D[A[i]]))*A[i]
  X+=A[i]
  Z[i]=i-Bsum(BC,D[A[i]])
  Badd(BC,D[A[i]],1)
  Badd(BIT,D[A[i]],A[i])
X=0
P=0
Binit(BIT,N+1)
Binit(BC,N+1)
Y=0
for i in range(N):
  P+=X-Bsum(BIT,D[A[i]])+(Y-Bsum(BC,D[A[i]]))*A[i]
  X+=C[i]
  Y+=Z[i]
  Badd(BC,D[A[i]],Z[i])
  Badd(BIT,D[A[i]],C[i])
print(P%998244353)
0