結果

問題 No.2898 Update Max
ユーザー 蜜蜂蜜蜂
提出日時 2024-09-19 21:47:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 1,751 bytes
コンパイル時間 926 ms
コンパイル使用メモリ 76,664 KB
実行使用メモリ 8,384 KB
最終ジャッジ日時 2024-09-19 21:50:13
合計ジャッジ時間 2,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,632 KB
testcase_01 AC 7 ms
5,504 KB
testcase_02 AC 7 ms
5,504 KB
testcase_03 AC 7 ms
5,632 KB
testcase_04 AC 8 ms
5,632 KB
testcase_05 AC 7 ms
5,504 KB
testcase_06 AC 7 ms
5,632 KB
testcase_07 AC 7 ms
5,632 KB
testcase_08 AC 25 ms
7,168 KB
testcase_09 AC 27 ms
7,168 KB
testcase_10 AC 26 ms
7,168 KB
testcase_11 AC 26 ms
7,040 KB
testcase_12 AC 26 ms
7,168 KB
testcase_13 AC 30 ms
7,296 KB
testcase_14 AC 29 ms
7,296 KB
testcase_15 AC 31 ms
7,424 KB
testcase_16 AC 29 ms
7,424 KB
testcase_17 AC 29 ms
7,424 KB
testcase_18 AC 42 ms
7,740 KB
testcase_19 AC 44 ms
7,680 KB
testcase_20 AC 44 ms
7,808 KB
testcase_21 AC 42 ms
7,808 KB
testcase_22 AC 44 ms
7,808 KB
testcase_23 AC 53 ms
8,256 KB
testcase_24 AC 54 ms
8,256 KB
testcase_25 AC 54 ms
8,260 KB
testcase_26 AC 60 ms
8,384 KB
testcase_27 AC 56 ms
8,252 KB
testcase_28 AC 58 ms
8,152 KB
testcase_29 AC 7 ms
5,632 KB
testcase_30 AC 7 ms
5,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

#include <atcoder/modint>
using namespace atcoder;

using mint = modint998244353;

const int MAX = 201000;
constexpr long long MOD = 998244353;

vector<mint> fac(MAX), finv(MAX), inv(MAX);
// i!, 1/i, 1/i!

void COMinit(){
    fac[0] = 1;
    fac[1] = 1;
    finv[0] = 1;
    finv[1] = 1;
    inv[1] = 1;
    
    for(int i = 2; i < MAX; i++){
        fac[i] = fac[i - 1] * i;
        inv[i] = -inv[MOD % i] * (MOD / i);
        finv[i] = finv[i - 1] * inv[i];
    }
}

mint COM(int n, int k){
    if(n < k || n < 0 || k < 0){
        return 0;
    }
    return fac[n] * finv[k] * finv[n - k];
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    COMinit();

    int n;
    cin >> n;

    int m = 0;
    vector<int> a(n), b, exist(n, 0);
    for(int i = 0; i < n; i++){
        cin >> a[i];
        if(a[i] == -1){
            m++;
        }
        else{
            a[i]--;
            exist[a[i]] = 1;
        }
    }

    for(int i = 0; i < n; i++){
        if(exist[i] == 0){
            b.emplace_back(i);
        }
    }

    mint ans = 0;
    int x = 0, mx = -1;
    for(int i = 0; i < n; i++){
        if(a[i] != -1){
            mx = max(mx, a[i]);
            if(mx != a[i]){
                continue;
            }
            int y = lower_bound(b.begin(), b.end(), mx) - b.begin();
            ans += COM(y, x) / COM(m, x);
        }
        else{
            int j = lower_bound(b.begin(), b.end(), mx) - b.begin() + 1;
            j = max(j, x + 1);
            ans += (COM(m, x + 1) - COM(j - 1, x + 1)) / (m * COM(m - 1, x));

            x++;
        }
    }

    for(int i = 1; i <= m; i++){
        ans *= i;
    }

    cout << ans.val() << endl;
}
0