結果

問題 No.2898 Update Max
ユーザー テナガザルテナガザル
提出日時 2024-09-21 04:23:17
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 2,138 bytes
コンパイル時間 1,104 ms
コンパイル使用メモリ 102,132 KB
実行使用メモリ 10,488 KB
最終ジャッジ日時 2024-09-21 04:23:21
合計ジャッジ時間 3,947 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 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 59 ms
5,376 KB
testcase_09 AC 60 ms
5,376 KB
testcase_10 AC 61 ms
5,376 KB
testcase_11 AC 59 ms
5,376 KB
testcase_12 AC 60 ms
5,376 KB
testcase_13 AC 63 ms
5,632 KB
testcase_14 AC 60 ms
5,760 KB
testcase_15 AC 61 ms
5,760 KB
testcase_16 AC 60 ms
5,760 KB
testcase_17 AC 62 ms
5,632 KB
testcase_18 AC 68 ms
7,700 KB
testcase_19 AC 73 ms
7,696 KB
testcase_20 AC 68 ms
7,696 KB
testcase_21 AC 67 ms
7,696 KB
testcase_22 AC 69 ms
7,828 KB
testcase_23 AC 72 ms
10,224 KB
testcase_24 AC 73 ms
10,356 KB
testcase_25 AC 71 ms
10,228 KB
testcase_26 AC 69 ms
10,488 KB
testcase_27 AC 70 ms
10,228 KB
testcase_28 AC 61 ms
10,384 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

class Comb
{
  int siz, mod;
  std::vector<long long> _fac, _inv, _finv;
public:
  // 引数は (mod)
  Comb(int m) : mod(m), siz(2)
  {
    _fac.resize(siz);
    _inv.resize(siz);
    _finv.resize(siz);
    _fac[0] = _fac[1] = _inv[1] = _finv[0] = _finv[1] = 1;
  }
  long long p(int n, int k)
  {
    if (n < k || k < 0) return 0;
    resize(n + 1);
    return _fac[n] * _finv[n - k] % mod;
  }
  long long c(int n, int k)
  {
    if (n < k || k < 0) return 0;
    resize(n + 1);
    return _fac[n] * _finv[k] % mod * _finv[n - k] % mod;
  }
  long long inv(int n)
  {
    resize(n + 1);
    if (n < 0) return 0;
    else return _inv[n];
  }
  long long fac(int n)
  {
    resize(n + 1);
    if (n < 0) return 0;
    else return _fac[n];
  }
  long long finv(int n)
  {
    resize(n + 1);
    if (n < 0) return 0;
    else return _finv[n];
  }
private:
  void resize(int n)
  {
    if (n <= siz) return;
    for (int i = siz; i < n; ++i)
    {
      _fac.push_back((long long)i * _fac[i - 1] % mod);
      _inv.push_back(mod - _inv[mod % i] * (mod / i) % mod);
      _finv.push_back(_finv[i - 1] * _inv[i] % mod);
    }
    siz = n;
  }
};

int main()
{
  const int mod = 998244353;
  int n;
  cin >> n;
  vector<int> a(n), flag(n);
  for (int i = 0; i < n; ++i) cin >> a[i];
  for (int i = 0; i < n; ++i) a[i] = max(-1, a[i] - 1);
  for (int i = 0; i < n; ++i) if (a[i] != -1) flag[a[i]] = 1;
  vector<int> val;
  for (int i = 0; i < n; ++i) if (!flag[i]) val.push_back(i);
  Comb cb(mod);
  long long ans = 0;
  int cnt = 0, ma = 0, siz = val.size();
  for (int i = 0; i < n; ++i)
  {
    if (a[i] != -1)
    {
      if (ma > a[i]) continue;
      int tmp = lower_bound(val.begin(), val.end(), a[i]) - val.begin();
      ans = (ans + cb.p(tmp, cnt) * cb.fac(siz - cnt)) % mod;
      ma = a[i];
    }
    else
    {
      int tmp = lower_bound(val.begin(), val.end(), ma) - val.begin();
      ans = (ans + (cb.c(siz, cnt + 1) - cb.c(tmp, cnt + 1) + mod) * cb.fac(cnt) % mod * cb.fac(siz - cnt - 1)) % mod;
      ++cnt;
    }
  }
  cout << ans << endl;
}
0