結果

問題 No.2898 Update Max
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-09-28 00:28:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 2,737 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 122,112 KB
最終ジャッジ日時 2024-09-28 00:28:33
合計ジャッジ時間 7,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 49 ms
52,096 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 60 ms
68,608 KB
testcase_04 AC 59 ms
68,992 KB
testcase_05 AC 61 ms
67,584 KB
testcase_06 AC 57 ms
67,456 KB
testcase_07 AC 59 ms
68,224 KB
testcase_08 AC 171 ms
121,216 KB
testcase_09 AC 167 ms
120,832 KB
testcase_10 AC 169 ms
121,112 KB
testcase_11 AC 169 ms
121,472 KB
testcase_12 AC 193 ms
121,204 KB
testcase_13 AC 190 ms
117,760 KB
testcase_14 AC 189 ms
117,504 KB
testcase_15 AC 192 ms
117,824 KB
testcase_16 AC 191 ms
117,504 KB
testcase_17 AC 201 ms
122,112 KB
testcase_18 AC 276 ms
104,448 KB
testcase_19 AC 250 ms
104,832 KB
testcase_20 AC 247 ms
104,960 KB
testcase_21 AC 247 ms
104,868 KB
testcase_22 AC 281 ms
104,960 KB
testcase_23 AC 300 ms
107,392 KB
testcase_24 AC 292 ms
107,392 KB
testcase_25 AC 299 ms
107,520 KB
testcase_26 AC 320 ms
107,776 KB
testcase_27 AC 299 ms
107,620 KB
testcase_28 AC 286 ms
107,136 KB
testcase_29 AC 34 ms
52,736 KB
testcase_30 AC 34 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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


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

    # 下準備
    free = 0
    used = 0
    for i in range(N):
        if A[i] == -1:
            free += 1
        else:
            used += 1
    
    # 下準備2
    a_array = [a for a in A if a != -1]
    a_array.sort()
    a_map = {}
    for i in range(len(a_array)):
        a_map[a_array[i]] = i + 1

    answer = 0
    combi = CombinationCalculator(N, MOD)
    fixed_max_a = -1
    before_used = 0
    for m in range(N):
        if A[m] == -1:
            free -= 1
            ans = combi.calc_permutation(N - used, m + 1 - before_used)
            if fixed_max_a != -1:
                ans -= combi.calc_permutation(fixed_max_a - a_map[fixed_max_a], m + 1 - before_used)
                ans %= MOD
            
            ans *= pow(m + 1 - before_used, MOD - 2, MOD)
            ans %= MOD

            # 残り部分の組み合わせ
            ans *= combi.factorial[free]
            ans %= MOD
        else:
            before_used += 1
            if fixed_max_a > A[m]:
                continue

            ans = combi.calc_permutation(A[m] - a_map[A[m]], m + 1 - before_used)

            # 残り部分の組み合わせ
            ans *= combi.factorial[free]
            ans %= MOD
            fixed_max_a = max(fixed_max_a, A[m])
        answer += ans
        answer %= MOD
    print(answer)
            







    





                





    
        















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