結果

問題 No.2898 Update Max
ユーザー karinohitokarinohito
提出日時 2024-09-20 22:07:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 1,586 bytes
コンパイル時間 4,346 ms
コンパイル使用メモリ 266,188 KB
実行使用メモリ 9,424 KB
最終ジャッジ日時 2024-09-20 22:07:51
合計ジャッジ時間 6,121 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 25 ms
7,168 KB
testcase_09 AC 25 ms
7,296 KB
testcase_10 AC 27 ms
7,168 KB
testcase_11 AC 27 ms
7,168 KB
testcase_12 AC 29 ms
7,168 KB
testcase_13 AC 27 ms
7,552 KB
testcase_14 AC 28 ms
7,424 KB
testcase_15 AC 27 ms
7,552 KB
testcase_16 AC 26 ms
7,680 KB
testcase_17 AC 26 ms
7,552 KB
testcase_18 AC 31 ms
8,268 KB
testcase_19 AC 30 ms
8,268 KB
testcase_20 AC 30 ms
8,396 KB
testcase_21 AC 30 ms
8,268 KB
testcase_22 AC 30 ms
8,396 KB
testcase_23 AC 29 ms
9,240 KB
testcase_24 AC 29 ms
9,320 KB
testcase_25 AC 30 ms
9,416 KB
testcase_26 AC 29 ms
9,420 KB
testcase_27 AC 29 ms
9,424 KB
testcase_28 AC 26 ms
9,292 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;

#include<atcoder/all>
using namespace atcoder;
using mint = modint998244353;
vector<mint> fact, factinv, inv;
const ll mod = 998244353;
void prenCkModp(ll n) {
    fact.resize(n + 5);
    factinv.resize(n + 5);
    inv.resize(n + 5);
    fact[0] = fact[1] = 1;
    factinv[0] = factinv[1] = 1;
    inv[1] = 1;
    for (ll i = 2; i < n + 5; i++) {
        fact[i] = (fact[i - 1] * i);
        inv[i] = mod - (inv[mod % i] * (mod / i));
        factinv[i] = (factinv[i - 1] * inv[i]);
    }

}

mint nCk(ll n, ll k) {
    if (n < k||k<0) return 0;
    return fact[n] * (factinv[k] * factinv[n - k]);
}


int main(){

    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    ll N;
    cin>>N;
    vector<bool> U(N,0);
    vector<ll> A(N);
    ll z=N;
    for(int i=0;i<N;i++){
        cin>>A[i];
        if(A[i]>0){
            z--;
            A[i]--;
            U[A[i]]=1;
        }
    } 
    vector<ll> Z;
    prenCkModp(N+1);
    for(int i=0;i<N;i++)if(!U[i])Z.push_back(i);
    mint an=0;
    ll h=-1;
    ll c=0;
    for(int i=0;i<N;i++){
        if(A[i]>=0){
            if(h>A[i])continue;
            ll zp=lower_bound(Z.begin(),Z.end(),A[i])-Z.begin();
            an+=nCk(zp,c)*fact[c]*fact[z-c];
            h=max(h,A[i]);
        }
        else{
            c++;
            
            ll zp=lower_bound(Z.begin(),Z.end(),h)-Z.begin();
            mint res=nCk(z,c)*fact[c-1]*fact[z-c];
            res-=nCk(zp,c)*fact[c-1]*fact[z-c];
            an+=res;
        }
    }
    cout<<an.val()<<endl;
}
0