結果

問題 No.1492 01文字列と転倒
ユーザー snrnsidysnrnsidy
提出日時 2021-05-20 05:54:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 591 ms / 4,000 ms
コード長 895 bytes
コンパイル時間 2,435 ms
コンパイル使用メモリ 210,796 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-10-10 07:10:24
合計ジャッジ時間 9,401 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
19,132 KB
testcase_01 AC 21 ms
19,188 KB
testcase_02 AC 591 ms
19,152 KB
testcase_03 AC 561 ms
19,204 KB
testcase_04 AC 528 ms
19,240 KB
testcase_05 AC 474 ms
19,268 KB
testcase_06 AC 478 ms
19,228 KB
testcase_07 AC 518 ms
19,108 KB
testcase_08 AC 584 ms
19,096 KB
testcase_09 AC 28 ms
19,076 KB
testcase_10 AC 20 ms
19,140 KB
testcase_11 AC 24 ms
19,108 KB
testcase_12 AC 25 ms
19,076 KB
testcase_13 AC 19 ms
19,108 KB
testcase_14 AC 482 ms
19,288 KB
testcase_15 AC 53 ms
19,216 KB
testcase_16 AC 94 ms
19,096 KB
testcase_17 AC 485 ms
19,188 KB
testcase_18 AC 98 ms
19,076 KB
testcase_19 AC 40 ms
19,328 KB
testcase_20 AC 85 ms
19,224 KB
testcase_21 AC 414 ms
19,112 KB
testcase_22 AC 94 ms
19,076 KB
testcase_23 AC 74 ms
19,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include <bits/stdc++.h>
 
using namespace std;

long long int dp[2][101][10001];

int main(void)
{
	cin.tie(NULL);
	ios::sync_with_stdio(false);

	long long int N,MOD;

	cin >> N >> MOD;

	dp[1][0][0] = 1;

	for(int i=0;i<2*N;i++)
	{
		memcpy(dp[0],dp[1],sizeof(dp[1]));
		memset(dp[1],0,sizeof(dp[1]));
		for(int j=0;j<=N;j++)
		{
			for(int k=0;k<=N*N;k++)
			{
				if(dp[0][j][k]==0) continue;
				int a = i - j;
				int b = j;
				//cout << i << ' ' << a << ' ' << b << ' ' << k << '\n';
				if(b+1<=a && b+1<=N)
				{
					dp[1][b+1][k] += dp[0][j][k];
					dp[1][b+1][k]%=MOD;
				}
				if(a+1<=N && k + b <= N*N)
				{
					dp[1][b][k + b] += dp[0][b][k];
					dp[1][b][k+b]%=MOD;
				}
			}
		}
	}

	for(int i=0;i<=N*N;i++)
	{
		long long int res = 0;
		for(int j=0;j<=N;j++)
		{
			res += dp[1][j][i];
			res%=MOD;
		}
		cout << res << '\n';
	}
	return 0;
}
0