結果

問題 No.1492 01文字列と転倒
ユーザー kotatsugamekotatsugame
提出日時 2021-04-30 21:33:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 286 ms / 4,000 ms
コード長 599 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 65,024 KB
実行使用メモリ 11,340 KB
最終ジャッジ日時 2024-07-18 23:57:39
合計ジャッジ時間 3,782 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 286 ms
11,208 KB
testcase_03 AC 255 ms
11,264 KB
testcase_04 AC 235 ms
11,008 KB
testcase_05 AC 200 ms
10,368 KB
testcase_06 AC 211 ms
10,696 KB
testcase_07 AC 224 ms
11,136 KB
testcase_08 AC 277 ms
11,340 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 210 ms
10,624 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 196 ms
10,240 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 171 ms
9,472 KB
testcase_22 AC 7 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int N,M;
int dp[2][101][10001];
main()
{
	cin>>N>>M;
	int now=0;
	dp[now][0][0]=1;
	for(int i=0;i<2*N;i++)
	{
		int nxt=1-now;
		for(int j=0;j<=N;j++)for(int k=0;k<=N*N;k++)dp[nxt][j][k]=0;
		for(int j=0;j<=N;j++)for(int k=0;k<=N*N;k++)if(dp[now][j][k])
		{
			int l=i-j;
			if(j<N&&k+l<=N*N)
			{
				dp[nxt][j+1][k+l]+=dp[now][j][k];
				if(dp[nxt][j+1][k+l]>=M)dp[nxt][j+1][k+l]-=M;
			}
			if(l<j)
			{
				dp[nxt][j][k]+=dp[now][j][k];
				if(dp[nxt][j][k]>=M)dp[nxt][j][k]-=M;
			}
		}
		now=nxt;
	}
	for(int i=0;i<=N*N;i++)cout<<dp[now][N][i]<<"\n";
}
0