結果

問題 No.2898 Update Max
ユーザー vjudge1vjudge1
提出日時 2024-09-26 11:58:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 1,171 bytes
コンパイル時間 1,765 ms
コンパイル使用メモリ 176,636 KB
実行使用メモリ 18,768 KB
最終ジャッジ日時 2024-09-26 11:58:32
合計ジャッジ時間 6,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 192 ms
18,252 KB
testcase_09 AC 180 ms
18,380 KB
testcase_10 AC 177 ms
18,304 KB
testcase_11 AC 190 ms
18,176 KB
testcase_12 AC 193 ms
18,304 KB
testcase_13 AC 174 ms
18,304 KB
testcase_14 AC 169 ms
18,304 KB
testcase_15 AC 170 ms
18,304 KB
testcase_16 AC 174 ms
18,376 KB
testcase_17 AC 168 ms
18,376 KB
testcase_18 AC 131 ms
18,412 KB
testcase_19 AC 136 ms
18,416 KB
testcase_20 AC 152 ms
18,416 KB
testcase_21 AC 134 ms
18,320 KB
testcase_22 AC 134 ms
18,404 KB
testcase_23 AC 94 ms
18,764 KB
testcase_24 AC 96 ms
18,764 KB
testcase_25 AC 95 ms
18,632 KB
testcase_26 AC 93 ms
18,760 KB
testcase_27 AC 93 ms
18,768 KB
testcase_28 AC 96 ms
18,740 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include<bits/stdc++.h>
using namespace std;
const int MAXN=2e5+100,mod=998244353;
int n;
int a[MAXN];
long long fac[MAXN],ans,inv[MAXN],facinv[MAXN];
map<int,int> mp;
long long A(int n, int m) {
    if(n<m) {
        return 0;
    }
    return fac[n]*facinv[n-m]%mod;
} 
int main() {
    cin >> n;
    fac[0]=1,inv[1]=1,facinv[0]=1;
    for (int i=1; i<=n; i++) {
        fac[i]=fac[i-1]*i%mod;
        if (i>1) inv[i]=inv[mod%i]*(mod-mod/i)%mod;
        facinv[i]=facinv[i-1]*inv[i]%mod;
        cin >> a[i];
        mp[a[i]]++;
    }
    vector<int> s;
    for (int i=1; i<=n; i++) {
        if (!mp[i]) {
            s.push_back(i);
        }
    }
    int cnt=s.size(),max1=0,c=0;
    for (int i=1; i<=n; i++) {
        max1=max(max1,a[i]);
        if (a[i]!=-1) {
            if (a[i]==max1) {
                int o=lower_bound(s.begin(),s.end(),a[i])-s.begin();
                (ans+=A(o,c)*fac[cnt-c])%=mod;
            }
        } else {
            int o=lower_bound(s.begin(),s.end(),max1)-s.begin();
            c++;
            (ans+=(A(cnt,c)-A(o,c)+mod)%mod*inv[c]%mod*fac[cnt-c])%=mod;
        }
    }
    cout << ans;
    return 0;
}
0