結果

問題 No.1300 Sum of Inversions
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-19 19:47:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,293 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 184,452 KB
最終ジャッジ日時 2024-09-19 19:48:15
合計ジャッジ時間 51,602 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,052 KB
testcase_01 AC 36 ms
54,164 KB
testcase_02 AC 36 ms
53,748 KB
testcase_03 AC 1,661 ms
129,688 KB
testcase_04 AC 1,572 ms
129,204 KB
testcase_05 AC 1,358 ms
129,256 KB
testcase_06 AC 1,974 ms
148,556 KB
testcase_07 AC 1,724 ms
134,480 KB
testcase_08 AC 1,972 ms
153,308 KB
testcase_09 AC 1,872 ms
153,060 KB
testcase_10 AC 1,003 ms
136,528 KB
testcase_11 AC 1,087 ms
136,716 KB
testcase_12 AC 1,598 ms
129,120 KB
testcase_13 AC 1,518 ms
128,788 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 1,679 ms
130,192 KB
testcase_17 AC 978 ms
130,940 KB
testcase_18 AC 1,105 ms
138,508 KB
testcase_19 AC 1,380 ms
124,452 KB
testcase_20 AC 1,451 ms
124,588 KB
testcase_21 AC 1,538 ms
124,876 KB
testcase_22 AC 1,225 ms
128,764 KB
testcase_23 AC 1,950 ms
147,712 KB
testcase_24 AC 1,281 ms
125,520 KB
testcase_25 AC 1,118 ms
138,036 KB
testcase_26 AC 1,077 ms
137,368 KB
testcase_27 AC 1,219 ms
133,408 KB
testcase_28 AC 1,977 ms
159,760 KB
testcase_29 AC 1,316 ms
125,468 KB
testcase_30 AC 1,912 ms
153,504 KB
testcase_31 AC 1,278 ms
128,768 KB
testcase_32 AC 1,297 ms
125,992 KB
testcase_33 AC 210 ms
113,020 KB
testcase_34 AC 223 ms
109,928 KB
testcase_35 AC 1,803 ms
143,948 KB
testcase_36 AC 1,832 ms
183,200 KB
権限があれば一括ダウンロードができます

ソースコード

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=int(len(d)**0.5)+1

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
  
  i=n-1-p
  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