結果

問題 No.616 へんなソート
ユーザー ミドリムシミドリムシ
提出日時 2018-02-09 17:31:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 861 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 71,132 KB
実行使用メモリ 221,092 KB
最終ジャッジ日時 2024-10-07 17:25:39
合計ジャッジ時間 12,808 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
221,092 KB
testcase_01 AC 55 ms
214,272 KB
testcase_02 AC 56 ms
214,272 KB
testcase_03 AC 56 ms
214,272 KB
testcase_04 AC 56 ms
214,400 KB
testcase_05 AC 55 ms
214,400 KB
testcase_06 AC 56 ms
214,272 KB
testcase_07 AC 55 ms
214,272 KB
testcase_08 AC 57 ms
214,272 KB
testcase_09 AC 58 ms
214,272 KB
testcase_10 AC 56 ms
214,400 KB
testcase_11 AC 58 ms
214,272 KB
testcase_12 AC 93 ms
214,272 KB
testcase_13 TLE -
testcase_14 AC 63 ms
214,356 KB
testcase_15 AC 56 ms
214,272 KB
testcase_16 AC 57 ms
214,400 KB
testcase_17 TLE -
testcase_18 AC 710 ms
214,400 KB
testcase_19 AC 501 ms
214,272 KB
testcase_20 AC 56 ms
214,272 KB
testcase_21 AC 62 ms
214,400 KB
testcase_22 AC 206 ms
214,396 KB
testcase_23 AC 55 ms
214,300 KB
testcase_24 AC 55 ms
214,420 KB
testcase_25 AC 56 ms
214,300 KB
testcase_26 AC 180 ms
214,308 KB
testcase_27 AC 149 ms
214,404 KB
testcase_28 TLE -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
using namespace std;

int N, K;

long dp[300][90000];

long array_patterns(int now_array_size, int now_inversion_number){
    if(now_array_size == N){
        return now_inversion_number <= K;
    }else if(dp[now_array_size][now_inversion_number] != -1){
        return dp[now_array_size][now_inversion_number];
    }else{
        long ans = 0;
        for(int i = 0; i <= now_array_size; i++){
            ans += array_patterns(now_array_size + 1, now_inversion_number + i);
            ans %= long(1e9 + 7);
        }
        return dp[now_array_size][now_inversion_number] = ans;
    }
}

int main(){
    cin >> N >> K;
    for(int i = 0; i < 300; i++){
        for(int j = 0; j < 90000; j++){
            dp[i][j] = -1;
        }
    }
    cout << array_patterns(0, 0) << endl;
}

0