結果

問題 No.1300 Sum of Inversions
ユーザー marroncastlemarroncastle
提出日時 2020-11-29 20:48:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 829 ms / 2,000 ms
コード長 1,381 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 189,492 KB
最終ジャッジ日時 2024-09-13 02:08:49
合計ジャッジ時間 21,468 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,788 KB
testcase_01 AC 36 ms
53,324 KB
testcase_02 AC 40 ms
53,468 KB
testcase_03 AC 628 ms
137,204 KB
testcase_04 AC 607 ms
136,580 KB
testcase_05 AC 517 ms
135,036 KB
testcase_06 AC 691 ms
154,136 KB
testcase_07 AC 691 ms
142,408 KB
testcase_08 AC 768 ms
160,100 KB
testcase_09 AC 757 ms
159,216 KB
testcase_10 AC 443 ms
138,868 KB
testcase_11 AC 448 ms
139,316 KB
testcase_12 AC 641 ms
136,276 KB
testcase_13 AC 626 ms
135,700 KB
testcase_14 AC 829 ms
189,492 KB
testcase_15 AC 745 ms
158,920 KB
testcase_16 AC 642 ms
137,364 KB
testcase_17 AC 428 ms
133,308 KB
testcase_18 AC 481 ms
141,024 KB
testcase_19 AC 562 ms
131,456 KB
testcase_20 AC 567 ms
131,564 KB
testcase_21 AC 572 ms
132,160 KB
testcase_22 AC 525 ms
135,896 KB
testcase_23 AC 689 ms
153,332 KB
testcase_24 AC 532 ms
132,764 KB
testcase_25 AC 468 ms
140,408 KB
testcase_26 AC 463 ms
139,676 KB
testcase_27 AC 490 ms
139,168 KB
testcase_28 AC 770 ms
166,044 KB
testcase_29 AC 564 ms
132,304 KB
testcase_30 AC 755 ms
159,476 KB
testcase_31 AC 523 ms
134,888 KB
testcase_32 AC 539 ms
132,988 KB
testcase_33 AC 320 ms
123,816 KB
testcase_34 AC 352 ms
120,092 KB
testcase_35 AC 405 ms
153,484 KB
testcase_36 AC 450 ms
188,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Binary Indexed Tree (Fenwick Tree) 1-indexed
class BIT:
  def __init__(self, n):
    self.n = n
    self.bit = [0]*(n+1)
    self.el = [0]*(n+1)
  def sum(self, i): #1~iまで足す
    s = 0
    while i > 0:
      s += self.bit[i]
      i -= i & -i
    return s
  def add(self, i, x):
    # assert i > 0
    self.el[i] += x
    while i <= self.n:
      self.bit[i] += x
      i += i & -i
  def get(self, i, j=None):
    if j is None:
      return self.el[i]
    return self.sum(j) - self.sum(i-1)
  def lower_bound(self,x):
    w = i = 0
    k = 1<<((self.n).bit_length())
    while k:
      if i+k <= self.n and w + self.bit[i+k] < x:
        w += self.bit[i+k]
        i += k
      k >>= 1
    return i+1
N = int(input())
total1 = BIT(N)
total2 = BIT(N)
cnt1 = BIT(N)
cnt2 = BIT(N)
A = list(map(int, input().split()))
comp = lambda arr: {e: i+1 for i, e in enumerate(sorted(set(arr)))}
compA = comp(A)
MOD = 998244353
B = A[::-1]
ans = 0
S,T = [0]*N,[0]*N
n,m = [0]*N,[0]*N
for i in range(N):
  total1.add(compA[A[i]], A[i])
  cnt1.add(compA[A[i]], 1)
  S[i] = total1.get(compA[A[i]]+1,N)%MOD
  n[i] = cnt1.get(compA[A[i]]+1,N)
for i in range(N):
  total2.add(compA[B[i]], B[i])
  cnt2.add(compA[B[i]], 1)
  T[N-1-i] = total2.sum(compA[B[i]]-1)%MOD
  m[N-1-i] = cnt2.sum(compA[B[i]]-1)
for i in range(N):
  ans += S[i]*m[i] + T[i]*n[i] + A[i]*m[i]*n[i]
  ans %= MOD
print(ans)
0