結果
問題 | No.1492 01文字列と転倒 |
ユーザー | warabi0906 |
提出日時 | 2023-02-10 15:40:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,984 bytes |
コンパイル時間 | 3,361 ms |
コンパイル使用メモリ | 235,772 KB |
実行使用メモリ | 815,616 KB |
最終ジャッジ日時 | 2024-07-07 12:02:03 |
合計ジャッジ時間 | 5,478 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | MLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
#include <bits/stdc++.h> #include "atcoder/all" #define debug cout << "OK" << endl; template<typename T> inline bool chmax(T& a, const T b) { if (a < b) { a = b; return true; } return false; } template<typename T> inline bool chmin(T& a, const T b) { if (a > b) { a = b; return true; } return false; } inline int Code(char c) { if ('A' <= c and c <= 'Z')return (int)(c - 'A'); if ('a' <= c and c <= 'z')return (int)(c - 'a'); if ('0' <= c and c <= '9')return (int)(c - '0'); assert(false); } using namespace std; using namespace atcoder; #define int long long constexpr int MOD = 998244353; constexpr int INF = (1LL << 63); using minit = modint998244353; template<typename T> ostream& operator << (ostream& st, const vector<T>& v) { for (const T value : v) { st << value << " "; } return st; } template<typename T> istream& operator >> (istream& st, vector<T>& v) { for (T& value : v) { st >> value; } return st; } struct edge { int to, cost; }; // // class Solver { public: int T; Solver() :T(1) {} ~Solver(){} void multi(); void solve() const; void sp(int x)const; }; void Solver::multi() { cin >> T; return; } void Solver::sp(const int x)const { cout << fixed << setprecision(x) << endl; return; } void Solver::solve() const { int N, M; cin >> N >> M; modint::set_mod(M); vector<vector<vector<modint>>> DP(2 * N + 1, vector<vector<modint>>(N * N + 1, vector<modint>(N + 1, 0))); DP[0][0][0] = 1; for (int i = 0; i < 2 * N; i++) { for (int j = 0; j <= N * N; j++) { for (int k = 0; k <= i / 2; k++) { if (j + k <= N * N)DP[i + 1][j + k][k] += DP[i][j][k]; if (i == 2 * k)continue; DP[i + 1][j][k + 1] += DP[i][j][k]; } } } for (int i = 0; i <= N * N; i++) { cout << DP[2 * N][i][N].val() << endl; } } signed main() { Solver solver; //solver.multi(); //solver.sp(); for (int i = 0; i < solver.T; i++) solver.solve(); return 0; } /* * わらびのコードこーどすぺーす (σ・∀・)σゲッツ!! */