結果

問題 No.1300 Sum of Inversions
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-19 19:40:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,256 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 177,848 KB
最終ジャッジ日時 2024-09-19 19:41:22
合計ジャッジ時間 49,656 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,596 KB
testcase_01 AC 39 ms
58,612 KB
testcase_02 AC 36 ms
59,072 KB
testcase_03 AC 1,426 ms
129,388 KB
testcase_04 AC 1,448 ms
129,384 KB
testcase_05 AC 1,093 ms
129,008 KB
testcase_06 AC 1,703 ms
142,908 KB
testcase_07 AC 1,787 ms
134,804 KB
testcase_08 AC 1,838 ms
147,344 KB
testcase_09 AC 1,740 ms
148,072 KB
testcase_10 AC 1,128 ms
134,624 KB
testcase_11 AC 1,044 ms
134,856 KB
testcase_12 AC 1,520 ms
129,072 KB
testcase_13 AC 1,544 ms
128,744 KB
testcase_14 TLE -
testcase_15 AC 1,707 ms
147,720 KB
testcase_16 AC 1,516 ms
130,064 KB
testcase_17 AC 1,014 ms
129,236 KB
testcase_18 AC 1,178 ms
136,244 KB
testcase_19 AC 1,235 ms
124,916 KB
testcase_20 AC 1,195 ms
124,932 KB
testcase_21 AC 1,411 ms
124,836 KB
testcase_22 AC 1,300 ms
128,704 KB
testcase_23 AC 1,666 ms
142,312 KB
testcase_24 AC 1,239 ms
125,760 KB
testcase_25 AC 993 ms
135,740 KB
testcase_26 AC 1,005 ms
135,728 KB
testcase_27 AC 1,219 ms
133,420 KB
testcase_28 AC 1,948 ms
154,076 KB
testcase_29 AC 1,327 ms
125,332 KB
testcase_30 AC 1,739 ms
147,820 KB
testcase_31 AC 1,130 ms
128,692 KB
testcase_32 AC 1,241 ms
126,040 KB
testcase_33 AC 1,088 ms
112,544 KB
testcase_34 AC 1,067 ms
108,780 KB
testcase_35 AC 1,539 ms
144,028 KB
testcase_36 AC 1,648 ms
177,128 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=448

lc=[0]*n
ls=[0]*n
stc1=[0]*B*B
stc2=[0]*B
sts1=[0]*B*B
sts2=[0]*B
for i in range(n):
  v=a[i]
  g=0
  l=d[v]+1
  r=n+2
  yl=l//B
  yr=r//B
  if yl==yr:
    g+=sum(stc1[l:r+1])
  else:
    g+=sum(stc1[l:yl*B+B])
    g+=sum(stc2[yl+1:yr])
    g+=sum(stc1[yr*B:r+1])
  lc[i]=g
  stc1[d[v]]+=1
  stc2[d[v]//B]+=1
  g=0
  l=d[v]+1
  r=n+2
  yl=l//B
  yr=r//B
  if yl==yr:
    g+=sum(sts1[l:r+1])
  else:
    g+=sum(sts1[l:yl*B+B])
    g+=sum(sts2[yl+1:yr])
    g+=sum(sts1[yr*B:r+1])
  ls[i]=g
  sts1[d[v]]+=v
  sts2[d[v]//B]+=v

rc=[0]*n
rs=[0]*n
stc1=[0]*B*B
stc2=[0]*B
sts1=[0]*B*B
sts2=[0]*B
for i in reversed(range(n)):
  v=a[i]
  g=0
  l=0
  r=d[v]-1
  yl=l//B
  yr=r//B
  if yl==yr:
    g+=sum(stc1[l:r+1])
  else:
    g+=sum(stc1[l:yl*B+B])
    g+=sum(stc2[yl+1:yr])
    g+=sum(stc1[yr*B:r+1])
  rc[i]=g
  stc1[d[v]]+=1
  stc2[d[v]//B]+=1
  g=0
  l=0
  r=d[v]-1
  yl=l//B
  yr=r//B
  if yl==yr:
    g+=sum(sts1[l:r+1])
  else:
    g+=sum(sts1[l:yl*B+B])
    g+=sum(sts2[yl+1:yr])
    g+=sum(sts1[yr*B:r+1])
  rs[i]=g
  sts1[d[v]]+=v
  sts2[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