結果
問題 | No.2898 Update Max |
ユーザー | vjudge1 |
提出日時 | 2024-09-25 16:28:49 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,153 bytes |
コンパイル時間 | 2,730 ms |
コンパイル使用メモリ | 244,704 KB |
実行使用メモリ | 10,128 KB |
最終ジャッジ日時 | 2024-09-25 16:28:57 |
合計ジャッジ時間 | 4,539 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 3 ms
7,652 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 27 ms
9,784 KB |
testcase_09 | AC | 28 ms
9,964 KB |
testcase_10 | AC | 26 ms
9,832 KB |
testcase_11 | AC | 28 ms
9,744 KB |
testcase_12 | AC | 32 ms
9,892 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
7,524 KB |
testcase_30 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const int N = 2e5 + 10, mod = 998244353; int n, a[N], cnt[N], mmax, ct, c; bool f[N]; ll ans, fact[N], factinv[N], inv[N]; ll C(int n, int m) { return fact[n] * factinv[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], f[max(0, a[i])] = 1; for (int i = 1; i <= n; i++) ct += a[i] == -1; inv[1] = 1; for (int i = 2; i <= n; i++) { inv[i] = (mod - mod / i) * inv[mod % i] % mod; } fact[0] = factinv[0] = 1; for (int i = 1; i <= n; i++) { fact[i] = fact[i - 1] * i % mod; factinv[i] = factinv[i - 1] * inv[i] % mod; } for (int i = 1; i <= n; i++) cnt[i] = cnt[i - 1] + !f[i]; for (int i = 1; i <= n; i++) { mmax = max(mmax, a[i]); if (a[i] == -1) c++, (ans += (C(ct, c) - C(cnt[mmax], c) + mod) % mod * fact[c - 1] % mod * fact[ct - c] % mod) %= mod; else if (mmax == a[i] && cnt[mmax - 1] >= c) (ans += C(cnt[mmax - 1], c) * fact[c] % mod * fact[ct - c] % mod) %= mod; } cout << ans; return 0; } ////