結果

問題 No.1011 Infinite Stairs
ユーザー sima.tettekesima.tetteke
提出日時 2020-03-20 23:13:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,049 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 179,144 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-12-15 13:45:49
合計ジャッジ時間 43,594 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 TLE -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 TLE -
testcase_12 WA -
testcase_13 TLE -
testcase_14 WA -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 WA -
testcase_20 WA -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 WA -
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 << " ";
            //遷移
            if((now) + (N - i - 1) * d < K) continue;
            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