結果

問題 No.1011 Infinite Stairs
ユーザー okok
提出日時 2020-03-20 21:39:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 886 bytes
コンパイル時間 1,023 ms
コンパイル使用メモリ 89,332 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-08 21:21:31
合計ジャッジ時間 4,956 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 11 ms
5,248 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<iomanip>
#include<cmath>
#include<vector>
#include<algorithm>
#include<utility>

using namespace std;

#define int long long
#define endl "\n"

constexpr long long INF = (long long)1e18;
constexpr long long MOD = 1'000'000'007; 

struct fast_io {
	fast_io(){
		std::cin.tie(nullptr);
		std::ios::sync_with_stdio(false);
	};
} ;
// } fio;

signed main(){
	cout<<fixed<<setprecision(10);
	
	int N, d, K;
	vector<vector<int>> dp;
	
	cin>>N>>d>>K;
	
	dp.resize(2, vector<int>(K+1));
	
	dp[0][0] = 1;
	
	for(int i = 0; i < N; i++){ //cout<<i<<endl;
		for(int j = 0; j < K; j++){ //cout<<j<<endl;
			for(int k = 1; k <= d; k++){
				if(j+k <= K){
					dp[(i+1)%2][j+k] += dp[i%2][j];
					dp[(i+1)%2][j+k] %= MOD;
				}
			}
		}
		for(int j = 0; j <= K; j++){
			dp[i%2][j] = 0;
		}
	}
	//cout<<"x"<<endl;
	cout<<dp[(N)%2][K]<<endl;
	
	return 0;
}
0