結果

問題 No.1300 Sum of Inversions
ユーザー HAPPAHAPPA
提出日時 2020-11-28 11:35:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 895 ms / 2,000 ms
コード長 2,513 bytes
コンパイル時間 1,059 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 162,948 KB
最終ジャッジ日時 2024-09-12 22:18:37
合計ジャッジ時間 23,513 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,024 KB
testcase_01 AC 40 ms
54,260 KB
testcase_02 AC 40 ms
53,292 KB
testcase_03 AC 696 ms
130,820 KB
testcase_04 AC 675 ms
130,360 KB
testcase_05 AC 577 ms
120,604 KB
testcase_06 AC 759 ms
136,692 KB
testcase_07 AC 732 ms
131,076 KB
testcase_08 AC 828 ms
138,444 KB
testcase_09 AC 819 ms
138,424 KB
testcase_10 AC 462 ms
116,584 KB
testcase_11 AC 480 ms
116,704 KB
testcase_12 AC 682 ms
130,472 KB
testcase_13 AC 679 ms
129,956 KB
testcase_14 AC 895 ms
162,948 KB
testcase_15 AC 819 ms
138,220 KB
testcase_16 AC 704 ms
130,756 KB
testcase_17 AC 449 ms
112,964 KB
testcase_18 AC 526 ms
117,140 KB
testcase_19 AC 590 ms
124,948 KB
testcase_20 AC 612 ms
125,032 KB
testcase_21 AC 598 ms
125,776 KB
testcase_22 AC 546 ms
121,008 KB
testcase_23 AC 756 ms
136,512 KB
testcase_24 AC 556 ms
120,700 KB
testcase_25 AC 469 ms
116,804 KB
testcase_26 AC 476 ms
116,644 KB
testcase_27 AC 531 ms
120,676 KB
testcase_28 AC 840 ms
162,088 KB
testcase_29 AC 615 ms
125,220 KB
testcase_30 AC 818 ms
138,732 KB
testcase_31 AC 561 ms
120,456 KB
testcase_32 AC 585 ms
120,780 KB
testcase_33 AC 414 ms
120,876 KB
testcase_34 AC 425 ms
131,492 KB
testcase_35 AC 557 ms
146,280 KB
testcase_36 AC 569 ms
162,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from bisect import bisect_left

sys.setrecursionlimit(10 ** 7)
input = sys.stdin.readline
f_inf = float('inf')
mod = 998244353


class BIT:
    """ 1-indexで使用しないと無限ループするので注意 """

    def __init__(self, n):
        self.n = n
        self.bit = [0] * (n + 1)

    def update(self, idx, x):
        """ idx番目にxをO(logN)で加算する """
        while idx <= self.n:
            self.bit[idx] += x
            idx += idx & (-idx)

    def query(self, idx):
        """ 1 ~ idx番目までの区間和をO(logN)で返す """
        res = 0
        while idx > 0:
            res += self.bit[idx]
            idx -= idx & (-idx)
        return res

    def sec_sum(self, left, right):
        """ left ~ right番目までの区間和をO(logN)で返す """
        return self.query(right) - self.query(left - 1)

    def lower_bound(self, w):
        """ 区間和がw以上になる最小のindexをO(logN)で返す """
        if w <= 0:
            return 0
        x = 0
        k = 1 << self.n.bit_length()
        while k:
            if x + k <= self.n and self.bit[x + k] < w:
                w -= self.bit[x + k]
                x += k
            k //= 2
        return x + 1

    def debug(self):
        """ bitの状態を出力する """
        print(*[self.sec_sum(i, i) for i in range(1, self.n + 1)])


def resolve():
    n = int(input())
    A = list(map(int, input().split()))
    comp = sorted(list(set(A)))

    bit_cnt = BIT(n + 10)
    bit_total = BIT(n + 10)
    cnt = [[0, 0] for _ in range(n)]
    total = [[0, 0] for _ in range(n)]
    for i in range(n):
        idx = bisect_left(comp, A[i]) + 1
        cnt[i][0] = bit_cnt.sec_sum(idx + 1, n)
        total[i][0] = bit_total.sec_sum(idx + 1, n) % mod
        bit_cnt.update(idx, 1)
        bit_total.update(idx, A[i])

    bit_cnt = BIT(n + 10)
    bit_total = BIT(n + 10)
    for i in reversed(range(n)):
        idx = bisect_left(comp, A[i]) + 1
        cnt[i][1] = bit_cnt.query(idx - 1)
        total[i][1] = bit_total.query(idx - 1) % mod
        bit_cnt.update(idx, 1)
        bit_total.update(idx, A[i])

    res = 0
    for i in range(n):
        left_cnt, right_cnt = cnt[i]
        left_tot, right_tot = total[i]
        if (not left_cnt) or (not right_cnt):
            continue
        res += left_cnt * right_tot % mod + right_cnt * left_tot % mod + A[i] * left_cnt % mod * right_cnt % mod
        res %= mod
    print(res)


if __name__ == '__main__':
    resolve()
0