結果

問題 No.2898 Update Max
ユーザー vjudge1vjudge1
提出日時 2024-09-25 21:58:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 1,040 bytes
コンパイル時間 2,105 ms
コンパイル使用メモリ 200,844 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-09-25 21:58:24
合計ジャッジ時間 4,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,632 KB
testcase_01 AC 5 ms
5,760 KB
testcase_02 AC 4 ms
5,888 KB
testcase_03 AC 5 ms
5,888 KB
testcase_04 AC 5 ms
5,760 KB
testcase_05 AC 5 ms
5,888 KB
testcase_06 AC 4 ms
5,888 KB
testcase_07 AC 5 ms
5,888 KB
testcase_08 AC 60 ms
8,140 KB
testcase_09 AC 59 ms
8,132 KB
testcase_10 AC 61 ms
8,012 KB
testcase_11 AC 60 ms
8,064 KB
testcase_12 AC 61 ms
8,140 KB
testcase_13 AC 59 ms
8,000 KB
testcase_14 AC 62 ms
8,064 KB
testcase_15 AC 62 ms
8,192 KB
testcase_16 AC 62 ms
8,064 KB
testcase_17 AC 62 ms
8,004 KB
testcase_18 AC 53 ms
8,140 KB
testcase_19 AC 53 ms
8,132 KB
testcase_20 AC 56 ms
8,136 KB
testcase_21 AC 57 ms
8,136 KB
testcase_22 AC 55 ms
8,136 KB
testcase_23 AC 44 ms
8,192 KB
testcase_24 AC 43 ms
8,064 KB
testcase_25 AC 43 ms
8,192 KB
testcase_26 AC 43 ms
8,136 KB
testcase_27 AC 43 ms
8,140 KB
testcase_28 AC 42 ms
7,424 KB
testcase_29 AC 5 ms
5,888 KB
testcase_30 AC 4 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

const int N = 2e5 + 5, mod = 998244353;

int g[N], f[N], inv[N], n, a[N], vis[N], maxx, cnt, ans, s[N];

int A(int n, int m){
  if(m > n)return 0;
  return 1ll * f[n] * g[n - m] % mod;
}

int main(){
  inv[1] = f[0] = g[0] = 1;
  for(int i = 1; i <= 200000; ++i){
    f[i] = 1ll * f[i - 1] * i % mod;
    if(i > 1){
      inv[i] = 1ll * inv[mod % i] * (mod - mod / i) % mod;
    }
    g[i] = 1ll * g[i - 1] * inv[i] % mod;
  }
  cin >> n;
  for(int i = 1; i <= n; ++i){
    cin >> a[i];
    if(a[i] > 0){
      vis[a[i]] = 1;
    }
  }
  for(int i = 1; i <= n; ++i){
    s[i] = s[i - 1] + !vis[i];
  }
  maxx = 0;
  for(int i = 1; i <= n; ++i){
    maxx = max(maxx, a[i]);
    cnt += (a[i] == -1);
    if(a[i] > 0){
      if(maxx == a[i]){
        ans = (ans + 1ll * A(s[a[i]], cnt) * f[s[n] - cnt] % mod) % mod;
      }
    }
    else{
      ans = (ans + 1ll * (A(s[n], cnt) - A(s[maxx], cnt) + mod) % mod * f[s[n] - cnt] % mod * inv[cnt] % mod) % mod;
    }
  }
  cout << ans;
  return 0;
}
0