結果

問題 No.2898 Update Max
ユーザー 沙耶花沙耶花
提出日時 2024-09-20 21:54:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 1,819 bytes
コンパイル時間 4,805 ms
コンパイル使用メモリ 268,180 KB
実行使用メモリ 38,440 KB
最終ジャッジ日時 2024-09-20 21:54:41
合計ジャッジ時間 9,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
36,004 KB
testcase_01 AC 74 ms
36,132 KB
testcase_02 AC 85 ms
36,096 KB
testcase_03 AC 75 ms
36,004 KB
testcase_04 AC 74 ms
35,968 KB
testcase_05 AC 75 ms
36,132 KB
testcase_06 AC 74 ms
36,096 KB
testcase_07 AC 76 ms
36,132 KB
testcase_08 AC 131 ms
38,308 KB
testcase_09 AC 135 ms
38,436 KB
testcase_10 AC 130 ms
38,272 KB
testcase_11 AC 135 ms
38,436 KB
testcase_12 AC 130 ms
38,308 KB
testcase_13 AC 146 ms
38,272 KB
testcase_14 AC 139 ms
38,312 KB
testcase_15 AC 139 ms
38,440 KB
testcase_16 AC 140 ms
38,308 KB
testcase_17 AC 143 ms
38,436 KB
testcase_18 AC 156 ms
38,308 KB
testcase_19 AC 154 ms
38,400 KB
testcase_20 AC 157 ms
38,312 KB
testcase_21 AC 155 ms
38,308 KB
testcase_22 AC 153 ms
38,436 KB
testcase_23 AC 169 ms
38,400 KB
testcase_24 AC 190 ms
38,308 KB
testcase_25 AC 168 ms
38,400 KB
testcase_26 AC 172 ms
38,436 KB
testcase_27 AC 168 ms
38,436 KB
testcase_28 AC 168 ms
38,308 KB
testcase_29 AC 76 ms
35,916 KB
testcase_30 AC 77 ms
35,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001LL
struct combi{
	deque<mint> kaijou;
	deque<mint> kaijou_;
	
	combi(int n){
		kaijou.push_back(1);
		for(int i=1;i<=n;i++){
			kaijou.push_back(kaijou[i-1]*i);
		}
		
		mint b=kaijou[n].inv();
		
		kaijou_.push_front(b);
		for(int i=1;i<=n;i++){
			int k=n+1-i;
			kaijou_.push_front(kaijou_[0]*k);
		}
	}
	
	mint combination(int n,int r){
		if(r>n)return 0;
		mint a = kaijou[n]*kaijou_[r];
		a *= kaijou_[n-r];
		return a;
	}
	
	mint junretsu(int a,int b){
		mint x = kaijou_[a]*kaijou_[b];
		x *= kaijou[a+b];
		return x;
	}
	
	mint catalan(int n){
		return combination(2*n,n)/(n+1);
	}
	
};
combi C(4000000);
int main(){
	
	int n;
	cin>>n;
	vector<int> a(n);
	vector<int> pos(n,-1);
	rep(i,n){
		cin>>a[i];
		if(a[i]>0){
			a[i]--;
			pos[a[i]] = i;
		}
	}
	vector<int> cnt(n+1);
	rep(i,n){
		if(a[i]==-1)cnt[i+1] = 1;
		cnt[i+1] += cnt[i];
	}
	int larger = 0;
	int all = cnt.back();
	mint ans = 0;
	int minpos = n;
	for(int i=n-1;i>=0;i--){
		if(pos[i]!=-1){
			if(minpos<pos[i]){
				ans += C.kaijou[all];
				continue;
			}
			
			int Suf = cnt[n]-cnt[pos[i]];
			int Pre = cnt[pos[i]];
			ans += C.kaijou[all];
			ans -= C.combination(Suf, larger) * C.kaijou[larger] * C.kaijou[all-larger];
			minpos = min(minpos,pos[i]);
		}
		else{
			mint t = C.kaijou[all] / (larger+1);
			ans += t * (larger);
			int Pre = cnt[minpos];
			int Suf = cnt[n]-cnt[minpos];
			larger++;
			t = C.combination(Suf, larger) * C.kaijou[larger] * C.kaijou[all-larger];
			t /= larger;
			ans += t;
		}
		
	}
	mint t = C.kaijou[all] * n;
	t -= ans;
	cout<<t.val()<<endl;
	return 0;
}
0