結果

問題 No.1492 01文字列と転倒
ユーザー RaffRaff
提出日時 2022-03-08 09:04:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 871 ms / 4,000 ms
コード長 1,008 bytes
コンパイル時間 1,608 ms
コンパイル使用メモリ 167,520 KB
実行使用メモリ 441,568 KB
最終ジャッジ日時 2024-07-23 08:15:22
合計ジャッジ時間 10,032 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 871 ms
440,172 KB
testcase_03 AC 797 ms
406,656 KB
testcase_04 AC 745 ms
378,860 KB
testcase_05 AC 631 ms
323,448 KB
testcase_06 AC 656 ms
337,312 KB
testcase_07 AC 713 ms
365,080 KB
testcase_08 AC 867 ms
441,568 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 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 656 ms
334,208 KB
testcase_15 AC 5 ms
6,944 KB
testcase_16 AC 21 ms
15,712 KB
testcase_17 AC 629 ms
323,436 KB
testcase_18 AC 22 ms
14,720 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 16 ms
13,264 KB
testcase_21 AC 535 ms
275,592 KB
testcase_22 AC 20 ms
15,652 KB
testcase_23 AC 12 ms
10,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, f, n) for (int i = (f); i < (n); i++)
#define rrep(i, f, n) for (int i = int(n) - 1; i >= f; i--)
typedef long long ll;
typedef pair<int, int> P;

template <typename T, typename U>
auto Sum(T a, U b) -> decltype(a + b)
{
    return a + b;
}

template <typename T, typename U>
inline bool amax(T &a, U b)
{
    if (b > a)
    {
        a = b;
        return true;
    }
    return false;
}
template <typename T, typename U>
inline bool amin(T &a, U b)
{
    if (b < a)
    {
        a = b;
        return true;
    }
    return false;
}

int dp[101][101][11001] = {};

int main()
{
    int N, M;
    cin >> N >> M;

    rep(i, 0, N + 1) dp[0][i][0] = 1;

    rep(i, 1, N + 1) rep(j, 0, N + 1) rep(k, 0, N * N + 1)
    {
        if (0 < j)
            dp[i][j][k] += dp[i][j - 1][k];
        if (j < i && j <= k)
            dp[i][j][k] += dp[i - 1][j][k - j];
        dp[i][j][k] %= M;
    }
    rep(i, 0, N * N + 1) cout << dp[N][N][i] << endl;
}
0