結果

問題 No.2898 Update Max
ユーザー vjudge1vjudge1
提出日時 2024-09-25 16:08:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,241 bytes
コンパイル時間 1,038 ms
コンパイル使用メモリ 88,856 KB
実行使用メモリ 13,884 KB
最終ジャッジ日時 2024-09-25 16:08:29
合計ジャッジ時間 6,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,884 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 27 ms
6,940 KB
testcase_09 AC 26 ms
6,944 KB
testcase_10 AC 26 ms
6,944 KB
testcase_11 AC 26 ms
6,940 KB
testcase_12 AC 27 ms
6,940 KB
testcase_13 AC 27 ms
6,940 KB
testcase_14 AC 27 ms
6,940 KB
testcase_15 AC 27 ms
6,940 KB
testcase_16 AC 27 ms
6,940 KB
testcase_17 AC 27 ms
6,944 KB
testcase_18 AC 33 ms
7,060 KB
testcase_19 WA -
testcase_20 AC 35 ms
7,192 KB
testcase_21 AC 36 ms
7,076 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

const int MAXN = 2e5 + 5, Mod = 998244353;

bool vis[MAXN];
vector<int> se;
int n, m, ans, a[MAXN], b[MAXN], fac[MAXN] = {1, 1}, inv[MAXN] = {0, 1}, facinv[MAXN] = {1, 1};

int A(int n, int m) {
  if (n < m) return 0;
  return 1ll * fac[n] * facinv[n - m] % Mod;
}

int main() {
  ios::sync_with_stdio(0), cin.tie(0);
  cin >> n;
  for (int i = 1; i <= n; i++) {
    cin >> a[i];
    if (a[i] > 0) {
      vis[a[i]] = 1;
    }
  }
  for (int i = 2; i <= n; i++) {
    fac[i] = 1ll * fac[i - 1] * i % Mod;
    inv[i] = 1ll * (Mod - Mod / i) * inv[Mod % i] % Mod;
    facinv[i] = 1ll * facinv[i - 1] * inv[i] % Mod;
    if (!vis[i]) se.push_back(i);
  }
  m = se.size();
  for (int i = 1, x = 0, c = 0; i <= n; i++) {
    if (a[i] > 0) {
      if (a[i] > x) {
        int y = lower_bound(se.begin(), se.end(), a[i]) - se.begin();
        ans = (ans + 1ll * A(y, c) * fac[m - c]) % Mod;
      }
    } else {
      int y = lower_bound(se.begin(), se.end(), x) - se.begin() + 1;
      y = max(y, c + 1);
      for (int i = y; i <= m; i++) {
        ans = (ans + 1ll * A(i - 1, c) * fac[m - c - 1]) % Mod;
      }
      c++;
    }
    x = max(x, a[i]);
  }
  cout << ans;
  return 0;
}
0