結果
問題 | No.1492 01文字列と転倒 |
ユーザー | auaua |
提出日時 | 2021-04-30 21:59:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,309 ms / 4,000 ms |
コード長 | 1,253 bytes |
コンパイル時間 | 1,786 ms |
コンパイル使用メモリ | 170,912 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-07-19 01:26:31 |
合計ジャッジ時間 | 21,349 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2,309 ms
11,008 KB |
testcase_03 | AC | 2,134 ms
10,496 KB |
testcase_04 | AC | 1,956 ms
10,368 KB |
testcase_05 | AC | 1,653 ms
9,344 KB |
testcase_06 | AC | 1,721 ms
9,600 KB |
testcase_07 | AC | 1,874 ms
9,984 KB |
testcase_08 | AC | 2,297 ms
11,008 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 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 | 1,718 ms
9,600 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 33 ms
5,376 KB |
testcase_17 | AC | 1,642 ms
9,344 KB |
testcase_18 | AC | 36 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 23 ms
5,376 KB |
testcase_21 | AC | 1,372 ms
8,576 KB |
testcase_22 | AC | 33 ms
5,376 KB |
testcase_23 | AC | 15 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; //#define int long long #define REP(i,m,n) for(int i=(m);i<(n);i++) #define rep(i,n) REP(i,0,n) #define pb push_back #define all(a) a.begin(),a.end() #define rall(c) (c).rbegin(),(c).rend() #define mp make_pair #define endl '\n' #define vec vector<ll> #define mat vector<vector<ll> > #define fi first #define se second #define double long double typedef long long ll; typedef unsigned long long ull; typedef pair<ll,ll> pll; //typedef long double ld; typedef complex<double> Complex; const ll INF=1e9+7; const ll MOD=INF; const ll inf=INF*INF; ll mod=MOD; const ll MAX=100010; signed main(){ ll n,m;cin>>n>>m; vector<vector<int> >dp(n+1,vector<int>(n*n+1)); vector<vector<int> >dp1(n+1,vector<int>(n*n+1)); dp[0][0]=1; rep(i,2*n){ rep(j,n+1){ rep(k,n*n+1){ if(i-j<j)continue; if(j<n){ dp1[j+1][k]=(dp1[j+1][k]+dp[j][k])%m; } if(k+j<=n*n)dp1[j][k+j]=(dp1[j][k+j]+dp[j][k])%m; } } swap(dp,dp1); rep(j,n+1){ rep(k,n*n+1){ dp1[j][k]=0; } } } rep(i,n*n+1){ cout<<dp[n][i]<<endl; } }