結果

問題 No.2898 Update Max
ユーザー vjudge1vjudge1
提出日時 2024-09-26 12:17:26
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,549 bytes
コンパイル時間 4,838 ms
コンパイル使用メモリ 276,456 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-09-26 12:17:39
合計ジャッジ時間 5,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 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 25 ms
7,552 KB
testcase_09 AC 25 ms
7,680 KB
testcase_10 AC 25 ms
7,680 KB
testcase_11 AC 27 ms
7,552 KB
testcase_12 AC 25 ms
7,680 KB
testcase_13 AC 28 ms
7,808 KB
testcase_14 AC 30 ms
7,680 KB
testcase_15 AC 29 ms
7,680 KB
testcase_16 AC 29 ms
7,552 KB
testcase_17 AC 29 ms
7,680 KB
testcase_18 AC 44 ms
8,064 KB
testcase_19 AC 43 ms
8,064 KB
testcase_20 AC 43 ms
7,808 KB
testcase_21 AC 42 ms
7,808 KB
testcase_22 AC 43 ms
8,064 KB
testcase_23 AC 52 ms
8,192 KB
testcase_24 AC 51 ms
8,192 KB
testcase_25 AC 58 ms
8,320 KB
testcase_26 AC 53 ms
8,320 KB
testcase_27 AC 52 ms
8,448 KB
testcase_28 AC 55 ms
8,320 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define _1 (__int128)1

using namespace std;
using ll = long long;

void FileIO (const string s) {
  freopen(string(s + ".in").c_str(), "r", stdin);
  freopen(string(s + ".out").c_str(), "w", stdout);
}

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

int n, a[N], b[N], m, inv[N], X[N], F[N], ans, mx[N], cnt;
bool f[N];

inline int C (int a, int b) {
  return (a >= b ? 1ll * F[a] * X[b] % mod * X[a - b] % mod : 0);
}

inline int A (int a, int b) {
  return (a >= b ? 1ll * F[a] * X[a - b] % mod : 0);
}

int qmod (int x, int y) {
  int ret = 1;
  while (y) ret = (y & 1 ? 1ll * ret * x % mod : ret), x = 1ll * x * x % mod, y >>= 1;
  return ret;
}

signed main () {
  ios::sync_with_stdio(0), cin.tie(0);
  // FileIO("");
  cin >> n;
  inv[1] = X[0] = F[0] = 1;
  for (int i = 2; i <= n; i++)
    inv[i] = 1ll * (mod - mod / i) * inv[mod % i] % mod;
  for (int i = 1; i <= n; i++)
    X[i] = 1ll * X[i - 1] * inv[i] % mod, F[i] = 1ll * F[i - 1] * i % mod;
  for (int i = 1; i <= n; i++)
    cin >> a[i], f[(a[i] != -1 ? a[i] : 0)] = 1, mx[i] = max(a[i], mx[i - 1]);
  for (int i = 1; i <= n; i++)
    if (!f[i])
      b[++m] = i;
  for (int i = 1; i <= n; i++) {
    if (a[i] == -1) {
      cnt++, ans = (ans + 1ll * (A(m, cnt) - A((lower_bound(b + 1, b + m + 1, mx[i]) - b - 1), cnt)) * A(m - cnt, m - cnt) % mod * qmod(cnt, mod - 2)) % mod;
    } else if (a[i] > mx[i - 1]) {
      ans = (ans + 1ll * A((lower_bound(b + 1, b + m + 1, a[i]) - b - 1), cnt) * A(m - cnt, m - cnt)) % mod;
    }
  }
  cout << ans;
  return 0;
}
0