結果

問題 No.1300 Sum of Inversions
ユーザー ntudantuda
提出日時 2021-10-16 11:22:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 711 ms / 2,000 ms
コード長 1,356 bytes
コンパイル時間 685 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 188,148 KB
最終ジャッジ日時 2024-09-17 19:21:23
合計ジャッジ時間 21,682 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,344 KB
testcase_01 AC 36 ms
52,824 KB
testcase_02 AC 35 ms
53,228 KB
testcase_03 AC 622 ms
127,316 KB
testcase_04 AC 593 ms
126,888 KB
testcase_05 AC 485 ms
120,196 KB
testcase_06 AC 659 ms
152,612 KB
testcase_07 AC 606 ms
132,292 KB
testcase_08 AC 702 ms
157,940 KB
testcase_09 AC 711 ms
157,872 KB
testcase_10 AC 427 ms
119,496 KB
testcase_11 AC 418 ms
120,144 KB
testcase_12 AC 579 ms
126,972 KB
testcase_13 AC 585 ms
126,500 KB
testcase_14 AC 711 ms
188,148 KB
testcase_15 AC 645 ms
158,020 KB
testcase_16 AC 670 ms
127,328 KB
testcase_17 AC 378 ms
115,272 KB
testcase_18 AC 441 ms
119,668 KB
testcase_19 AC 521 ms
122,480 KB
testcase_20 AC 544 ms
122,040 KB
testcase_21 AC 526 ms
122,512 KB
testcase_22 AC 471 ms
120,500 KB
testcase_23 AC 642 ms
131,780 KB
testcase_24 AC 490 ms
118,972 KB
testcase_25 AC 413 ms
120,592 KB
testcase_26 AC 411 ms
120,060 KB
testcase_27 AC 434 ms
122,024 KB
testcase_28 AC 679 ms
166,336 KB
testcase_29 AC 520 ms
122,148 KB
testcase_30 AC 686 ms
158,316 KB
testcase_31 AC 458 ms
120,584 KB
testcase_32 AC 495 ms
119,960 KB
testcase_33 AC 220 ms
103,588 KB
testcase_34 AC 246 ms
100,200 KB
testcase_35 AC 459 ms
140,496 KB
testcase_36 AC 443 ms
187,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
mod = 998244353

class Bit1:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)

    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            s %= mod
            i -= i & -i
        return s

    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            self.tree[i] %= mod
            i += i & -i

class Bit2:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)

    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s

    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

B = list(set(A))
B.sort()
M = len(B)
D = dict(zip(B,range(M)))

bit11 = Bit1(M)
bit21 = Bit1(M)
bit12 = Bit2(M)
bit22 = Bit2(M)
ans = 0
for i in range(N):
    tmp = bit21.sum(M) - bit21.sum(D[A[i]]+1)
    cnt = bit22.sum(M) - bit22.sum(D[A[i]]+1)
    if cnt > 0:
        ans = (ans + A[i] * cnt + tmp) % mod
    tmp = bit11.sum(M) - bit11.sum(D[A[i]]+1)
    cnt = bit12.sum(M) - bit12.sum(D[A[i]]+1)
    if cnt > 0:
        bit21.add(D[A[i]]+1,tmp + A[i] * cnt)
        bit22.add(D[A[i]]+1,cnt)
    bit11.add(D[A[i]]+1,A[i])
    bit12.add(D[A[i]]+1,1)

print(ans)
0