結果

問題 No.1492 01文字列と転倒
ユーザー Example0911Example0911
提出日時 2021-05-01 17:37:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,217 ms / 4,000 ms
コード長 798 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 209,308 KB
実行使用メモリ 19,084 KB
最終ジャッジ日時 2024-05-07 08:41:35
合計ジャッジ時間 33,489 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
18,832 KB
testcase_01 AC 52 ms
18,828 KB
testcase_02 AC 3,217 ms
18,828 KB
testcase_03 AC 2,933 ms
18,828 KB
testcase_04 AC 2,897 ms
18,952 KB
testcase_05 AC 2,498 ms
19,084 KB
testcase_06 AC 2,534 ms
18,956 KB
testcase_07 AC 2,676 ms
18,960 KB
testcase_08 AC 3,204 ms
18,960 KB
testcase_09 AC 83 ms
18,956 KB
testcase_10 AC 31 ms
18,952 KB
testcase_11 AC 62 ms
19,084 KB
testcase_12 AC 63 ms
18,956 KB
testcase_13 AC 43 ms
18,952 KB
testcase_14 AC 2,662 ms
18,952 KB
testcase_15 AC 191 ms
18,952 KB
testcase_16 AC 392 ms
18,956 KB
testcase_17 AC 2,569 ms
18,828 KB
testcase_18 AC 418 ms
18,956 KB
testcase_19 AC 149 ms
19,084 KB
testcase_20 AC 346 ms
18,956 KB
testcase_21 AC 2,221 ms
18,952 KB
testcase_22 AC 394 ms
19,080 KB
testcase_23 AC 302 ms
18,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define int long long
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
const ll INF = (1LL << 61);
ll mod = 1000000007;

int dp[102][102][10010];
signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	int N, M; cin >> N >> M;
	vector<vector<int>>dp(101, vector<int>(10010));

	dp[0][0] = 1;
	for (int i = 0; i < 2 * N; i++) {
		vector<vector<int>>now(101, vector<int>(10010));
		for (int j = 0; j <= min(i, N); j++) {
			for (int k = 0; k <= N*N; k++) {
				if (i < 2 * j) {
					now[j][k] += dp[j][k];
					now[j][k] %= M;
				}
				if (k + i - j <= N * N&&j < N) {
					now[j + 1][k + i - j] += dp[j][k];
					now[j + 1][k + i - j] %= M;
				}

			}
		}
		dp = now;
	}
	for (int k = 0; k <= N * N; k++) {
		cout << dp[N][k] << '\n';
	}
	return 0;
}
0