結果
問題 | No.1761 Sequence Distance |
ユーザー | chocorusk |
提出日時 | 2021-11-20 16:50:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,792 bytes |
コンパイル時間 | 3,224 ms |
コンパイル使用メモリ | 190,452 KB |
実行使用メモリ | 671,688 KB |
最終ジャッジ日時 | 2024-06-11 18:54:17 |
合計ジャッジ時間 | 21,925 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | MLE | - |
testcase_34 | MLE | - |
testcase_35 | MLE | - |
testcase_36 | MLE | - |
testcase_37 | MLE | - |
testcase_38 | MLE | - |
testcase_39 | MLE | - |
testcase_40 | MLE | - |
testcase_41 | MLE | - |
testcase_42 | MLE | - |
testcase_43 | MLE | - |
testcase_44 | MLE | - |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #include <list> #include <atcoder/all> #define popcount __builtin_popcount using namespace std; using namespace atcoder; typedef long long ll; typedef pair<int, int> P; using mint=modint998244353; mint f[2000010], invf[2000010]; void fac(int n){ f[0]=1; for(ll i=1; i<=n; i++) f[i]=f[i-1]*i; invf[n]=f[n].inv(); for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1); } mint comb(int x, int y){ if(!(0<=y && y<=x)) return 0; return f[x]*invf[y]*invf[x-y]; } // mint dp[5050][1010]; // mint dp2[5050][1010]; mint dp[5010][33][1010]; int main() { int n,m;cin>>n>>m; dp[0][0][0]=1; for(int i=0; i<n; i++){ for(int j=0; j*j<=m; j++){ for(int k=0; k<=m; k++){ if(j==0){ dp[i+1][j+1][k]+=dp[i][j][k]*2; dp[i+1][j][k]+=dp[i][j][k]*2; }else if(k+j<=m){ dp[i+1][j+1][k+j]+=dp[i][j][k]; dp[i+1][j-1][k+j]+=dp[i][j][k]; dp[i+1][j][k+j]+=dp[i][j][k]*2; } } } } cout<<dp[n][0][m].val()<<endl; // mint dp[55][111][10101]; // dp[0][n][n*n]=1; // for(int i=0; i<n; i++){ // for(int j=n-i; j<=n+i; j++){ // for(int k=n*n-i*i; k<=n*n+i*i; k++){ // dp[i+1][j][k]+=2*dp[i][j][k]; // if(j==n){ // dp[i+1][j+1][k-i]+=2*dp[i][j][k]; // }else if(j>n){ // dp[i+1][j+1][k-i]+=dp[i][j][k]; // dp[i+1][j-1][k+i]+=dp[i][j][k]; // } // } // } // } // cout<<dp[n][n][m+n*n].val()<<endl; // for(int i=0; i<=n; i++){ // for(int j=0; j<=m; j++){ // for(int p=1; p<i; p++){ // for(int q=0; q<=j; q++){ // dp[i][j]+=dp2[p][q]*dp[i-p][j-q]*2; // } // } // for(int x=0; x<=i-2 && x+1<=j; x++){ // dp2[i][j]+=dp[x][j-x-1]*(mint(2).pow(i-x-2)); // if(x+1==j){ // dp2[i][j]+=mint(2).pow(i-2); // } // } // dp[i][j]+=dp2[i][j]; // } // } // mint ans=0; // for(int i=0; i<=n; i++){ // ans+=dp[i][m]*2*mint(2).pow(n-i); // } // cout<<ans.val()<<endl; return 0; }