結果

問題 No.616 へんなソート
ユーザー merom686merom686
提出日時 2017-12-16 01:13:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 768 ms
コンパイル使用メモリ 75,260 KB
実行使用メモリ 54,628 KB
最終ジャッジ日時 2024-12-14 16:45:55
合計ジャッジ時間 1,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 ms
7,520 KB
testcase_04 AC 3 ms
9,584 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 3 ms
7,776 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 3 ms
9,572 KB
testcase_09 AC 4 ms
11,720 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 4 ms
11,596 KB
testcase_12 AC 5 ms
17,872 KB
testcase_13 AC 17 ms
46,560 KB
testcase_14 AC 4 ms
13,768 KB
testcase_15 AC 2 ms
7,624 KB
testcase_16 AC 4 ms
11,724 KB
testcase_17 AC 12 ms
42,468 KB
testcase_18 AC 8 ms
34,376 KB
testcase_19 AC 7 ms
30,192 KB
testcase_20 AC 3 ms
7,664 KB
testcase_21 AC 4 ms
11,756 KB
testcase_22 AC 6 ms
24,040 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 6 ms
24,012 KB
testcase_27 AC 5 ms
22,000 KB
testcase_28 AC 21 ms
54,628 KB
testcase_29 AC 22 ms
54,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;

constexpr int P = 1000000007;

constexpr int N = 300, K = N * (N - 1) / 2;
int dp[N][K + 1];

int main() {
    int n, k;
    cin >> n >> k;

    dp[0][0] = 1;
    for (int i = 1; i < n; i++) {
        int k1 = min(k, (i + 1) * i / 2);
        int64_t t = 0;
        for (int j = 0; j <= k1; j++) {
            t += dp[i - 1][j];
            if (j - i - 1 >= 0) t -= dp[i - 1][j - i - 1];
            dp[i][j] = t % P;
        }
    }

    int64_t r = 0;
    for (int j = 0; j <= k; j++) {
        r += dp[n - 1][j];
    }
    r %= P;

    cout << r << endl;

    return 0;
}
0