結果

問題 No.2792 Security Cameras on Young Diagram
ユーザー lingfunnylingfunny
提出日時 2024-06-21 22:30:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 1,259 bytes
コンパイル時間 3,312 ms
コンパイル使用メモリ 243,452 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-06-24 18:45:44
合計ジャッジ時間 3,512 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,248 KB
testcase_01 AC 5 ms
5,376 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 11 ms
5,376 KB
testcase_13 AC 9 ms
5,376 KB
testcase_14 AC 10 ms
5,504 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 11 ms
5,376 KB
testcase_17 AC 13 ms
5,632 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 16 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// Problem: No.2792 Security Cameras on Young Diagram
// Group: yukicoder
// URL: https://yukicoder.me/problems/no/2792
// Memory Limit: 512 MB
// Time Limit: 2000 ms
// Author: lingfunny
// 
// Powered by CP Editor (https://cpeditor.org)

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

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

int n, a[mxn], ans, fct[mxn * 2], ift[mxn * 2];

int S(int x) {
	return 1ll * x * (x + 1) / 2 % mod;
}

int qpow(int x, int k) {
	int res = 1;
	while (k) {
		if (k & 1) res = 1ll * res * x % mod;
		k >>= 1, x = 1ll * x * x % mod;
	}
	return res;
}

int C(int n, int m) {
	return 1ll * fct[n] * ift[m] % mod * ift[n - m] % mod;
}

int main() {
	scanf("%d", &n);
	for (int i = 1; i <= n; ++i) scanf("%d", a + i);
	fct[0] = 1;
	for (int i = 1; i <= N * 2; ++i) fct[i] = 1ll * fct[i - 1] * i % mod;
	ift[N * 2] = qpow(fct[N * 2], mod - 2);
	for (int i = N * 2 - 1; ~i; --i) ift[i] = 1ll * ift[i + 1] * (i + 1) % mod;
	ans = a[1] + 1;
	for (int i = 2; i <= n; ++i) {
		// a[i] >= x[i] >= x[i - 1] >= ... >= x[1] >= 1
		// a[i] + i >= x[i] + i > x[i - 1] + i -1 > .. > x[1] + 1 >= 2
		ans += C(a[i] + i - 1, i);
		// printf("ans += %d\n", C(a[i] + i - 1, i));
		ans %= mod;
	}
	printf("%d\n", ans);
	return 0;
}
0