結果

問題 No.1011 Infinite Stairs
ユーザー sima.tettekesima.tetteke
提出日時 2020-03-20 23:06:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 995 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 179,148 KB
実行使用メモリ 42,624 KB
最終ジャッジ日時 2024-12-15 08:19:02
合計ジャッジ時間 43,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 2 ms
14,756 KB
testcase_02 AC 119 ms
21,920 KB
testcase_03 AC 49 ms
19,492 KB
testcase_04 TLE -
testcase_05 AC 2 ms
15,012 KB
testcase_06 AC 2 ms
13,636 KB
testcase_07 AC 1,283 ms
42,624 KB
testcase_08 AC 2 ms
13,636 KB
testcase_09 AC 3 ms
15,520 KB
testcase_10 AC 1,622 ms
17,192 KB
testcase_11 TLE -
testcase_12 AC 296 ms
14,628 KB
testcase_13 TLE -
testcase_14 AC 62 ms
13,644 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 9 ms
15,396 KB
testcase_20 AC 701 ms
13,636 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 559 ms
7,936 KB
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
 
using namespace std;
typedef long long int ll;
typedef pair<ll, ll > pi;  
typedef pair<pair<ll, ll >, ll > pii;  
vector<ll > vec;
vector<vector<ll > > vec2;
ll MOD = 1000000007;
ll INF = 1145141919454519;

int main(){

    ll N, d, K;
    cin >> N >> d >> K;
    //Nと段数
    vector<map<ll, ll > > dp(N+19);
    dp[0][0] = 1;

    for(ll i = 0; i < N; i++){
        //更新
        auto begin = dp[i].begin(), end = dp[i].end();
        for (auto iter = begin; iter != end; iter++) {
            ll now = iter->first;
            ll num = iter->second;
            //cout << now << " ";
            //遷移
            for(ll h = d; h > 0; h--){
                //枝ヶ里
                if((now + h) + (N - i - 1) * d < K) break;
                if(now + h <= K){
                    dp[i+1][now+h] += num;
                    dp[i+1][now+h] %= MOD;
                }
            }
        }  
        //cout << endl;
    }

    cout << dp[N][K] << endl;

}
0