結果

問題 No.2898 Update Max
ユーザー vjudge1vjudge1
提出日時 2024-09-25 20:51:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,244 bytes
コンパイル時間 1,774 ms
コンパイル使用メモリ 167,672 KB
実行使用メモリ 34,408 KB
最終ジャッジ日時 2024-09-25 20:51:43
合計ジャッジ時間 4,575 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
30,048 KB
testcase_01 AC 39 ms
30,176 KB
testcase_02 AC 39 ms
30,048 KB
testcase_03 AC 40 ms
30,176 KB
testcase_04 AC 39 ms
30,052 KB
testcase_05 AC 38 ms
30,052 KB
testcase_06 AC 40 ms
30,052 KB
testcase_07 AC 40 ms
30,184 KB
testcase_08 AC 59 ms
32,344 KB
testcase_09 AC 58 ms
33,016 KB
testcase_10 AC 62 ms
30,552 KB
testcase_11 AC 58 ms
32,632 KB
testcase_12 AC 57 ms
34,272 KB
testcase_13 AC 58 ms
32,500 KB
testcase_14 AC 61 ms
32,544 KB
testcase_15 AC 61 ms
34,276 KB
testcase_16 AC 59 ms
30,676 KB
testcase_17 AC 57 ms
34,144 KB
testcase_18 AC 59 ms
32,652 KB
testcase_19 AC 62 ms
32,512 KB
testcase_20 AC 60 ms
32,956 KB
testcase_21 AC 62 ms
34,176 KB
testcase_22 AC 59 ms
32,876 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 38 ms
30,172 KB
testcase_30 AC 40 ms
30,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define int long long

const int N = 1e6 + 5, mod = 998244353;

int n, x[N], ans, sum, cnt[N], now;

int inv[N], g[N], f[N];

bool vis[N];

int C(int n, int m) {
  return f[n] * g[m] % mod * g[n - m] % mod;
}

signed main() {
  ios::sync_with_stdio(0);
  cin.tie(0);
  inv[1] = f[0] = g[0] = 1;
  for (int i = 1; i <= 1000000; i++) {
    f[i] = f[i - 1] * i % mod;
    if (i > 1) inv[i] = inv[mod % i] * (mod - mod / i) % mod;
    g[i] = g[i - 1] * inv[i] % mod;
  }
  cin >> n;
  for (int i = 1; i <= n; i++) {
    cin >> x[i];
    cnt[max(0ll, x[i])] = 1;
    now += (x[i] == -1);
  }
  cnt[0] = 0;
  for (int i = 1; i <= n; i++) {
    cnt[i] = !cnt[i];
    cnt[i] += cnt[i - 1];
  }
  int maxi = 0, c = 0;
  for (int i = 1; i <= n; i++) {
    maxi = max(maxi, x[i]);
    if (x[i] == -1) {
      c++;
      ans += (C(now, c) - C(cnt[maxi], c) + mod) % mod * f[c - 1] % mod * f[now - c] % mod;
      ans %= mod;
    }
    else {
      if (maxi == x[i] && cnt[maxi] >= c) {
        ans += C(cnt[maxi], c) * f[c] % mod * f[now - c] % mod;
        ans %= mod;
      }
    }
  }
  cout << ans << "\n";
  return 0;
}

/*
4
1 -1 3 -1
6
2 4 5 3 6 1
17
-1 -1 8 2 10 9 12 -1 7 -1 -1 -1 11 -1 13 -1 -1
*/
0