結果

問題 No.1300 Sum of Inversions
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-19 19:45:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,278 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 183,860 KB
最終ジャッジ日時 2024-09-19 19:46:18
合計ジャッジ時間 53,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 TLE -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 TLE -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 1,141 ms
118,680 KB
testcase_34 AC 1,183 ms
114,932 KB
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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
B=448

lc=[0]*n
ls=[0]*n
stlc1=[0]*B*B
stlc2=[0]*B
stls1=[0]*B*B
stls2=[0]*B
rc=[0]*n
rs=[0]*n
strc1=[0]*B*B
strc2=[0]*B
strs1=[0]*B*B
strs2=[0]*B

for p in range(n):
  i=p
  v=a[i]
  g=0
  l=d[v]+1
  r=n+2
  yl=l//B
  yr=r//B
  if yl==yr:
    g+=sum(stlc1[l:r+1])
  else:
    g+=sum(stlc1[l:yl*B+B])
    g+=sum(stlc2[yl+1:yr])
    g+=sum(stlc1[yr*B:r+1])
  lc[i]=g
  stlc1[d[v]]+=1
  stlc2[d[v]//B]+=1
  g=0
  l=d[v]+1
  r=n+2
  yl=l//B
  yr=r//B
  if yl==yr:
    g+=sum(stls1[l:r+1])
  else:
    g+=sum(stls1[l:yl*B+B])
    g+=sum(stls2[yl+1:yr])
    g+=sum(stls1[yr*B:r+1])
  ls[i]=g
  stls1[d[v]]+=v
  stls2[d[v]//B]+=v
  
  p=n-1-i
  v=a[i]
  g=0
  l=0
  r=d[v]-1
  yl=l//B
  yr=r//B
  if yl==yr:
    g+=sum(strc1[l:r+1])
  else:
    g+=sum(strc1[l:yl*B+B])
    g+=sum(strc2[yl+1:yr])
    g+=sum(strc1[yr*B:r+1])
  rc[i]=g
  strc1[d[v]]+=1
  strc2[d[v]//B]+=1
  g=0
  l=0
  r=d[v]-1
  yl=l//B
  yr=r//B
  if yl==yr:
    g+=sum(strs1[l:r+1])
  else:
    g+=sum(strs1[l:yl*B+B])
    g+=sum(strs2[yl+1:yr])
    g+=sum(strs1[yr*B:r+1])
  rs[i]=g
  strs1[d[v]]+=v
  strs2[d[v]//B]+=v

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