結果

問題 No.1492 01文字列と転倒
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-09-03 14:55:04
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,322 ms / 4,000 ms
コード長 759 bytes
コンパイル時間 5,566 ms
コンパイル使用メモリ 312,912 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-06-12 20:38:45
合計ジャッジ時間 17,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1,316 ms
19,072 KB
testcase_03 AC 1,215 ms
18,332 KB
testcase_04 AC 1,114 ms
17,408 KB
testcase_05 AC 933 ms
15,768 KB
testcase_06 AC 977 ms
16,000 KB
testcase_07 AC 1,072 ms
16,776 KB
testcase_08 AC 1,322 ms
19,200 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 978 ms
16,000 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 14 ms
6,944 KB
testcase_17 AC 939 ms
15,644 KB
testcase_18 AC 16 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 10 ms
6,944 KB
testcase_21 AC 761 ms
14,100 KB
testcase_22 AC 14 ms
6,940 KB
testcase_23 AC 7 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  ll n,m;cin>>n>>m;
  vc dp(n+1,vc<ll>(n*n+1,0)); dp[0][0]=1;
  rep(z,2*n){
    vc pre(n+1,vc<ll>(n*n+1,0)); swap(pre,dp);
    rep(i,n+1)rep(j,n*n+1)if(pre[i][j]!=0){
      if(j+(z-i)/2<=n*n&&i+1<=n)dp[i+1][j+(z-i)/2]=(dp[i+1][j+(z-i)/2]+pre[i][j])%m;
      if(i)dp[i-1][j]=(dp[i-1][j]+pre[i][j])%m;
    }
  }
  rep(i,n*n+1)cout<<dp[0][i]<<"\n";
}
0