結果

問題 No.2898 Update Max
ユーザー vjudge1vjudge1
提出日時 2024-09-26 21:58:44
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,597 bytes
コンパイル時間 2,681 ms
コンパイル使用メモリ 249,696 KB
実行使用メモリ 11,728 KB
最終ジャッジ日時 2024-09-26 21:58:50
合計ジャッジ時間 5,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 26 ms
9,600 KB
testcase_09 AC 26 ms
9,600 KB
testcase_10 AC 26 ms
9,728 KB
testcase_11 AC 26 ms
9,600 KB
testcase_12 AC 24 ms
9,600 KB
testcase_13 AC 33 ms
9,984 KB
testcase_14 AC 32 ms
9,928 KB
testcase_15 AC 33 ms
9,856 KB
testcase_16 AC 33 ms
9,928 KB
testcase_17 AC 33 ms
9,924 KB
testcase_18 AC 48 ms
10,568 KB
testcase_19 AC 47 ms
10,572 KB
testcase_20 AC 47 ms
10,572 KB
testcase_21 AC 47 ms
10,700 KB
testcase_22 AC 46 ms
10,576 KB
testcase_23 AC 55 ms
11,592 KB
testcase_24 AC 56 ms
11,600 KB
testcase_25 AC 57 ms
11,724 KB
testcase_26 AC 55 ms
11,728 KB
testcase_27 AC 55 ms
11,596 KB
testcase_28 AC 51 ms
10,036 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
#define fi first
#define sc second
#define pii pair<int,int>
#define pb push_back
#define umap unordered_map
#define mset multiset
#define pq priority_queue
#define ull unsigned long long
#define i128 __int128
const int maxn=2e5+10;
const int mod=998244353;
int n,a[maxn],fr[maxn],ifr[maxn],vis[maxn];
vector<int> vec;
int quickpow(int x,int y){
    int p=1;
    for(int i=y;i;i>>=1) p=(p*((i&1)?x:1))%mod,x=(x*x)%mod;
    return p;
}
int inv(int x){
    return quickpow(x,mod-2);
}
void solve(){
    cin>>n,fr[0]=1;
    for(int i=1;i<=n;i++) cin>>a[i],vis[a[i]]=1;
    for(int i=1;i<=n;i++) fr[i]=(fr[i-1]*i)%mod;
    ifr[n]=inv(fr[n]);
    for(int i=n-1;~i;i--) ifr[i]=(ifr[i+1]*(i+1))%mod;
    for(int i=1;i<=n;i++) if(!vis[i]) vec.pb(i);
    int maxx=0,res=0,cnt=0;
    for(int i=1;i<=n;i++){
        maxx=max(maxx,a[i]);
        int pos=lower_bound(vec.begin(),vec.end(),maxx)-vec.begin();
        if(a[i]==-1){
            cnt++;
            int num=fr[vec.size()]*ifr[vec.size()-cnt]%mod;
            if(pos>=cnt) num=(num-fr[pos]*ifr[pos-cnt]%mod+mod)%mod;
            num=(num*inv(cnt)%mod*fr[vec.size()-cnt])%mod,res=(res+num)%mod;
        }
        else if(a[i]==maxx){
            if(pos>=cnt) res=(res+fr[pos]*ifr[pos-cnt]%mod*fr[vec.size()-cnt]%mod)%mod;
        }
    }
    cout<<res<<endl;
}
signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0),cout.tie(0);
    int t=1;
    // cin>>t;
    while(t--) solve();
    return 0;
}
/*
Samples
input:

output:

THINGS TODO:
??freopen???????
????
????????????
*/
0