結果

問題 No.2616 中央番目の中央値
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-10-23 01:01:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 3,015 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 124,872 KB
最終ジャッジ日時 2024-10-23 01:01:17
合計ジャッジ時間 9,435 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,836 KB
testcase_01 AC 39 ms
54,316 KB
testcase_02 AC 37 ms
53,616 KB
testcase_03 AC 38 ms
53,944 KB
testcase_04 AC 38 ms
53,264 KB
testcase_05 AC 39 ms
53,636 KB
testcase_06 AC 39 ms
52,860 KB
testcase_07 AC 38 ms
53,016 KB
testcase_08 AC 38 ms
54,660 KB
testcase_09 AC 39 ms
53,128 KB
testcase_10 AC 44 ms
60,172 KB
testcase_11 AC 48 ms
61,652 KB
testcase_12 AC 54 ms
65,160 KB
testcase_13 AC 63 ms
72,020 KB
testcase_14 AC 64 ms
74,164 KB
testcase_15 AC 71 ms
76,996 KB
testcase_16 AC 77 ms
77,812 KB
testcase_17 AC 85 ms
80,052 KB
testcase_18 AC 100 ms
83,836 KB
testcase_19 AC 137 ms
94,596 KB
testcase_20 AC 135 ms
94,332 KB
testcase_21 AC 222 ms
112,104 KB
testcase_22 AC 357 ms
124,480 KB
testcase_23 AC 330 ms
124,408 KB
testcase_24 AC 250 ms
124,416 KB
testcase_25 AC 246 ms
124,608 KB
testcase_26 AC 347 ms
124,668 KB
testcase_27 AC 331 ms
124,348 KB
testcase_28 AC 327 ms
124,548 KB
testcase_29 AC 363 ms
124,872 KB
testcase_30 AC 334 ms
124,456 KB
testcase_31 AC 326 ms
124,544 KB
testcase_32 AC 331 ms
124,712 KB
testcase_33 AC 337 ms
124,280 KB
testcase_34 AC 337 ms
124,380 KB
testcase_35 AC 332 ms
124,676 KB
testcase_36 AC 354 ms
124,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2616

MOD = 998244353


class CombinationCalculator:
    """
    modを考慮したPermutation, Combinationを計算するためのクラス
    """    
    def __init__(self, size, mod):
        self.mod = mod
        self.factorial = [0] * (size + 1)
        self.factorial[0] = 1
        for i in range(1, size + 1):
            self.factorial[i] = (i * self.factorial[i - 1]) % self.mod
        
        self.inv_factorial = [0] * (size + 1)
        self.inv_factorial[size] = pow(self.factorial[size], self.mod - 2, self.mod)

        for i in reversed(range(size)):
            self.inv_factorial[i] = ((i + 1) * self.inv_factorial[i + 1]) % self.mod

    def calc_combination(self, n, r):
        if n < 0 or n < r or r < 0:
            return 0

        if r == 0 or n == r:
            return 1
        
        ans = self.inv_factorial[n - r] * self.inv_factorial[r]
        ans %= self.mod
        ans *= self.factorial[n]
        ans %= self.mod
        return ans
    
    def calc_permutation(self, n, r):
        if n < 0 or n < r:
            return 0

        ans = self.inv_factorial[n - r]
        ans *= self.factorial[n]
        ans %= self.mod
        return ans
    

class BinaryIndexTree:
    """
    フェニック木(BinaryIndexTree)の基本的な機能を実装したクラス
    """
    def __init__(self, size):
        self.size = size
        self.array = [0] * (size + 1)
    
    def add(self, x, a):
        index = x
        while index <= self.size:
            self.array[index] += a
            index += index & (-index)
    
    def sum(self, x):
        index = x
        ans = 0
        while index > 0:
            ans += self.array[index]
            index -= index & (-index)
        return ans

    def least_upper_bound(self, value):
        if self.sum(self.size) < value:
            return -1
        elif value <= 0:
            return 0

        m = 1
        while m < self.size:
            m *= 2

        k = 0
        k_sum = 0
        while m > 0:
            k0 = k + m
            if k0 < self.size:
                if k_sum + self.array[k0] < value:
                    k_sum += self.array[k0]
                    k += m
            m //= 2
        if k < self.size:
            return k + 1
        else:
            return -1

        

def main():
    N = int(input())
    P = list(map(int, input().split()))

    combi = CombinationCalculator(2 * N, MOD)

    bit = BinaryIndexTree(N)
    forward_pm = [0 for _ in range(N)]
    for i in range(N):
        p = P[i]
        forward_pm[i] = bit.sum(p)
        bit.add(p, 1)

    answer = 0
    for i in range(N):
        fm = forward_pm[i]
        bm = P[i] - 1 - fm
        fp = i - fm
        bp = N - P[i] - fp    

        a = combi.calc_combination(fm + bp, fm)
        b = combi.calc_combination(fp + bm, fp)
        answer += (a * b) % MOD
        answer %= MOD
    print(answer)





    

            



        




if __name__ == "__main__":
    main()
0