結果

問題 No.2932 えっえっ嘘嘘嘘待って待って待って???えマジで?ほんとに?マジでやばすぎなんだけど?えっおっほんとにこんなにDPしちゃっていいんですかい???マジでやばすぎなんだけど???
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-10-17 16:55:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 590 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 4,321 ms
コンパイル使用メモリ 208,292 KB
実行使用メモリ 50,216 KB
最終ジャッジ日時 2024-10-17 16:55:09
合計ジャッジ時間 5,795 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 151 ms
15,020 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 29 ms
6,816 KB
testcase_07 AC 56 ms
7,680 KB
testcase_08 AC 581 ms
50,192 KB
testcase_09 AC 590 ms
50,216 KB
testcase_10 AC 576 ms
50,136 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 8 ms
6,816 KB
testcase_13 AC 75 ms
9,216 KB
testcase_14 AC 404 ms
34,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

#include <atcoder/modint>
using mint = atcoder::modint998244353;
int main() {
	fast_io();
	int h, w, m;
	cin >> h >> w >> m;
	mint mpow[h * w + 1];
	mpow[0] = 1;
	for (int i = 1; i <= h * w; i++) {
		mpow[i] = mpow[i - 1] * m;
	}
	// binom(m, i)
	mint comb[h * w + 1];
	comb[0] = 1;
	for (int i = 1; i <= h * w; i++) {
		comb[i] = comb[i - 1] * (m - i + 1) / i;
	}
	mint others = mint(m).pow(h * w - h - w + 1);

	vector<vector<mint>> dp(h, vector<mint>(w));

	dp[0][0] = 1;
	for (int i = 0; i < h; i++) {
		for (int j = 0; j < w; j++) {
			if (i < h - 1) {
				dp[i + 1][j] += dp[i][j];
			}
			if (j < w - 1) {
				dp[i][j + 1] += dp[i][j];
			}
		}
	}

	mint ans = others * dp[h - 1][w - 1] * comb[h + w - 1];
	cout << ans.val() << endl;
}
0