結果

問題 No.1300 Sum of Inversions
ユーザー Kiri8128Kiri8128
提出日時 2020-11-27 21:46:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 767 ms / 2,000 ms
コード長 1,240 bytes
コンパイル時間 1,115 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 129,736 KB
最終ジャッジ日時 2024-07-26 12:10:57
合計ジャッジ時間 18,828 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 598 ms
111,488 KB
testcase_04 AC 565 ms
110,704 KB
testcase_05 AC 325 ms
99,840 KB
testcase_06 AC 661 ms
118,792 KB
testcase_07 AC 627 ms
114,752 KB
testcase_08 AC 696 ms
121,372 KB
testcase_09 AC 684 ms
120,600 KB
testcase_10 AC 272 ms
98,176 KB
testcase_11 AC 276 ms
98,048 KB
testcase_12 AC 588 ms
110,268 KB
testcase_13 AC 575 ms
109,748 KB
testcase_14 AC 767 ms
126,088 KB
testcase_15 AC 690 ms
120,180 KB
testcase_16 AC 606 ms
112,404 KB
testcase_17 AC 270 ms
95,872 KB
testcase_18 AC 296 ms
97,152 KB
testcase_19 AC 495 ms
105,828 KB
testcase_20 AC 512 ms
106,424 KB
testcase_21 AC 500 ms
105,696 KB
testcase_22 AC 329 ms
99,712 KB
testcase_23 AC 690 ms
118,636 KB
testcase_24 AC 334 ms
99,876 KB
testcase_25 AC 291 ms
98,176 KB
testcase_26 AC 291 ms
96,896 KB
testcase_27 AC 314 ms
99,712 KB
testcase_28 AC 711 ms
121,928 KB
testcase_29 AC 506 ms
105,824 KB
testcase_30 AC 685 ms
121,000 KB
testcase_31 AC 332 ms
99,456 KB
testcase_32 AC 350 ms
100,352 KB
testcase_33 AC 252 ms
110,080 KB
testcase_34 AC 437 ms
107,084 KB
testcase_35 AC 278 ms
112,640 KB
testcase_36 AC 617 ms
129,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT():
    def __init__(self, init):
        if type(init) == int:
            self.n = init + 1
            self.X = [0] * self.n
        else:
            self.n = len(init) + 1
            self.X = [0] + init
            for i in range(1, self.n):
                if i + (i & -i) < self.n:
                    self.X[i + (i & -i)] += self.X[i]
            
    def add(self, i, x=1):
        i += 1
        while i < self.n:
            self.X[i] += x
            i += i & (-i)

    def getsum(self, i):
        ret = 0
        while i != 0:
            ret += self.X[i]
            i -= i&(-i)
        return ret

    def getrange(self, l, r):
        return self.getsum(r) - self.getsum(l)

def calc(L, r = 0):
    bit = BIT(N)
    X = [0] * N
    for aa in L:
        a, i = aa >> 18, aa & m
        X[i] = bit.getrange(i, N) if r == 0 else bit.getsum(i)
        bit.add(i, (a << 18) + 1)
    return X
m = (1 << 18) - 1
N = int(input())
A = [int(a) for a in input().split()]
AA = sorted([(int(a) << 18) + i for i, a in enumerate(A)])
X = calc(AA)
Y = calc(AA[::-1], 1)
ans = 0
for a, x, y in zip(A, X, Y):
    a1, c1 = x >> 18, x & m
    a2, c2 = y >> 18, y & m
    ans += a1 * c2 + a2 * c1 + a * c1 * c2
print(ans % 998244353)
0