結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 856 ms
440,520 KB
testcase_03 AC 792 ms
409,296 KB
testcase_04 AC 735 ms
378,272 KB
testcase_05 AC 622 ms
324,364 KB
testcase_06 AC 650 ms
337,332 KB
testcase_07 AC 701 ms
364,396 KB
testcase_08 AC 848 ms
440,180 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 649 ms
336,000 KB
testcase_15 AC 6 ms
6,940 KB
testcase_16 AC 20 ms
13,696 KB
testcase_17 AC 616 ms
323,792 KB
testcase_18 AC 22 ms
14,720 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 15 ms
13,320 KB
testcase_21 AC 521 ms
273,900 KB
testcase_22 AC 21 ms
15,776 KB
testcase_23 AC 11 ms
8,704 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