結果

問題 No.1011 Infinite Stairs
ユーザー okok
提出日時 2020-03-20 21:39:02
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 886 bytes
コンパイル時間 1,063 ms
コンパイル使用メモリ 89,228 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2024-12-15 04:53:38
合計ジャッジ時間 28,388 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
11,556 KB
testcase_02 AC 11 ms
13,632 KB
testcase_03 TLE -
testcase_04 AC 1,780 ms
11,168 KB
testcase_05 TLE -
testcase_06 AC 2 ms
13,636 KB
testcase_07 AC 50 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 50 ms
6,820 KB
testcase_11 AC 1,123 ms
6,820 KB
testcase_12 AC 18 ms
6,816 KB
testcase_13 AC 1,225 ms
6,820 KB
testcase_14 AC 6 ms
6,820 KB
testcase_15 AC 493 ms
6,816 KB
testcase_16 TLE -
testcase_17 AC 514 ms
6,816 KB
testcase_18 TLE -
testcase_19 AC 12 ms
6,816 KB
testcase_20 AC 23 ms
6,816 KB
testcase_21 AC 1,378 ms
6,816 KB
testcase_22 TLE -
testcase_23 AC 1,928 ms
6,820 KB
testcase_24 AC 1,156 ms
6,820 KB
testcase_25 AC 1,706 ms
6,816 KB
testcase_26 AC 551 ms
10,532 KB
権限があれば一括ダウンロードができます

ソースコード

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