結果

問題 No.2898 Update Max
ユーザー shobonvipshobonvip
提出日時 2024-09-20 21:32:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 2,229 bytes
コンパイル時間 4,052 ms
コンパイル使用メモリ 263,292 KB
実行使用メモリ 12,728 KB
最終ジャッジ日時 2024-09-20 21:33:18
合計ジャッジ時間 6,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
11,264 KB
testcase_01 AC 14 ms
11,136 KB
testcase_02 AC 14 ms
11,264 KB
testcase_03 AC 15 ms
11,392 KB
testcase_04 AC 14 ms
11,320 KB
testcase_05 AC 15 ms
11,324 KB
testcase_06 AC 15 ms
11,192 KB
testcase_07 AC 15 ms
11,136 KB
testcase_08 AC 41 ms
12,600 KB
testcase_09 AC 43 ms
12,672 KB
testcase_10 AC 43 ms
12,596 KB
testcase_11 AC 42 ms
12,544 KB
testcase_12 AC 42 ms
12,608 KB
testcase_13 AC 42 ms
12,600 KB
testcase_14 AC 42 ms
12,600 KB
testcase_15 AC 41 ms
12,544 KB
testcase_16 AC 41 ms
12,672 KB
testcase_17 AC 41 ms
12,600 KB
testcase_18 AC 38 ms
12,544 KB
testcase_19 AC 39 ms
12,544 KB
testcase_20 AC 39 ms
12,596 KB
testcase_21 AC 39 ms
12,600 KB
testcase_22 AC 39 ms
12,600 KB
testcase_23 AC 34 ms
12,672 KB
testcase_24 AC 32 ms
12,728 KB
testcase_25 AC 32 ms
12,600 KB
testcase_26 AC 33 ms
12,604 KB
testcase_27 AC 31 ms
12,672 KB
testcase_28 AC 29 ms
12,600 KB
testcase_29 AC 16 ms
11,324 KB
testcase_30 AC 16 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

//defmodfact
const int COMinitMAX = 998244;
mint fact[COMinitMAX+1], factinv[COMinitMAX+1];

void modfact(){
	fact[0] = 1;
	for (int i=1; i<=COMinitMAX; i++){
		fact[i] = fact[i-1] * i;
	}
	factinv[COMinitMAX] = fact[COMinitMAX].inv();
	for (int i=COMinitMAX-1; i>=0; i--){
		factinv[i] = factinv[i+1] * (i+1);
	}
}

mint binom(int a, int b){
	if (a<b || b<0) return mint(0);
	return fact[a]*factinv[b]*factinv[a-b];
}
//--------


int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	modfact();

	int n; cin >> n;
	vector<int> a(n);
	int all_empty = 0;
	rep(i,0,n){
		cin >> a[i];
		a[i]--;
		all_empty += (a[i] < 0);
	}

	fenwick_tree<int> fw(n);
	rep(i,0,n){
		if (a[i] >= 0){
			fw.add(a[i],1);
		}
	}

	int now_empty = 0;
	mint ans = 0;
	int nowmax = -1;
	rep(i,0,n){
		if (a[i] < 0) {
			ans += fact[now_empty] * fact[all_empty - now_empty - 1] * 
			(
				binom(all_empty, now_empty+1)
				- binom(nowmax+1 - fw.sum(0, nowmax+1), now_empty+1)
			);
			now_empty++;
		}else{
			int freedom = a[i] - fw.sum(0, a[i]);
			if (chmax(nowmax, a[i])){
				ans += binom(freedom, now_empty) * fact[now_empty] * fact[all_empty - now_empty];
			}
		}
	}
	cout << ans.val() << '\n';
}

0