結果

問題 No.1300 Sum of Inversions
ユーザー 👑 rin204rin204
提出日時 2022-07-04 15:05:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 885 ms / 2,000 ms
コード長 1,416 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 175,276 KB
最終ジャッジ日時 2024-05-08 04:33:10
合計ジャッジ時間 24,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,252 KB
testcase_01 AC 38 ms
52,976 KB
testcase_02 AC 40 ms
53,992 KB
testcase_03 AC 684 ms
127,344 KB
testcase_04 AC 685 ms
126,832 KB
testcase_05 AC 595 ms
128,184 KB
testcase_06 AC 796 ms
131,860 KB
testcase_07 AC 746 ms
132,876 KB
testcase_08 AC 826 ms
146,648 KB
testcase_09 AC 841 ms
146,356 KB
testcase_10 AC 499 ms
132,012 KB
testcase_11 AC 504 ms
132,216 KB
testcase_12 AC 706 ms
126,944 KB
testcase_13 AC 701 ms
126,320 KB
testcase_14 AC 885 ms
175,276 KB
testcase_15 AC 824 ms
146,432 KB
testcase_16 AC 708 ms
127,332 KB
testcase_17 AC 471 ms
126,532 KB
testcase_18 AC 545 ms
133,032 KB
testcase_19 AC 618 ms
124,112 KB
testcase_20 AC 632 ms
124,380 KB
testcase_21 AC 631 ms
124,768 KB
testcase_22 AC 580 ms
130,048 KB
testcase_23 AC 742 ms
132,092 KB
testcase_24 AC 584 ms
125,704 KB
testcase_25 AC 517 ms
133,152 KB
testcase_26 AC 520 ms
132,528 KB
testcase_27 AC 565 ms
133,308 KB
testcase_28 AC 836 ms
153,068 KB
testcase_29 AC 632 ms
124,364 KB
testcase_30 AC 829 ms
146,888 KB
testcase_31 AC 592 ms
128,220 KB
testcase_32 AC 628 ms
126,276 KB
testcase_33 AC 350 ms
103,812 KB
testcase_34 AC 347 ms
101,548 KB
testcase_35 AC 545 ms
141,388 KB
testcase_36 AC 530 ms
174,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

class Bit:
    def __init__(self, n):
        self.size = n
        self.n0 = 1 << (n.bit_length() - 1)
        self.tree = [0] * (n + 1)
    
    def range_sum(self, l, r):
        return self.sum(r - 1) - self.sum(l - 1)
        
    def sum(self, i):
        i += 1
        s = 0
        while i > 0:
            s += self.tree[i]
            s %= MOD
            i -= i & -i
        return s
        
    def get(self, i):
        return self.sum(i) - self.sum(i - 1)
 
    def add(self, i, x):
        i += 1
        while i <= self.size:
            self.tree[i] += x
            self.tree[i] %= MOD
            i += i & -i
         
    def lower_bound(self, x):
        pos = 0
        plus = self.n0
        while plus > 0:
            if pos + plus <= self.size and self.tree[pos + plus] < x:
                x -= self.tree[pos + plus]
                pos += plus
            plus //= 2
        return pos

n = int(input())
A = list(map(int, input().split()))
se = set(A)
lst = sorted(se)
dic = {a:i for i, a in enumerate(lst)}
le = len(lst)
bit1 = Bit(le)
bit2 = Bit(le)
cnt1 = Bit(le)
cnt2 = Bit(le)

ans = 0
for a in A:
    b = dic[a]
    ans += bit2.range_sum(b + 1, le) + a * cnt2.range_sum(b + 1, le)
    ans %= MOD
    bit2.add(b, bit1.range_sum(b + 1, le) + a * cnt1.range_sum(b + 1, le))
    cnt2.add(b, cnt1.range_sum(b + 1, le))
    bit1.add(b, a)
    cnt1.add(b, 1)
print(ans)
0