結果

問題 No.1011 Infinite Stairs
ユーザー Y17Y17
提出日時 2020-03-20 21:43:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 1,421 ms
コンパイル使用メモリ 167,744 KB
実行使用メモリ 215,184 KB
最終ジャッジ日時 2024-07-17 11:46:29
合計ジャッジ時間 3,668 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
8,276 KB
testcase_02 AC 20 ms
30,036 KB
testcase_03 AC 164 ms
151,588 KB
testcase_04 AC 54 ms
61,432 KB
testcase_05 AC 228 ms
215,184 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 18 ms
42,576 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 13 ms
41,464 KB
testcase_11 AC 57 ms
64,708 KB
testcase_12 AC 14 ms
45,412 KB
testcase_13 AC 32 ms
22,016 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 45 ms
27,648 KB
testcase_16 AC 127 ms
102,144 KB
testcase_17 AC 25 ms
13,568 KB
testcase_18 AC 82 ms
60,544 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 41 ms
27,264 KB
testcase_22 AC 80 ms
98,004 KB
testcase_23 AC 45 ms
88,144 KB
testcase_24 AC 53 ms
107,668 KB
testcase_25 AC 81 ms
124,656 KB
testcase_26 AC 26 ms
67,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define int long long
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

int dp[310][90010];

#define MOD 1000000007 

signed main(){
	int n, d, k;
	cin >> n >> d >> k;
	
	dp[0][0] = 1; 
	for(int i = 1;i <= n;i++){
		int rui[100010] = {};
		for(int j = 0;j <= k;j++){
			rui[j+1] = (rui[j] + dp[i-1][j]) % MOD;
		}

		dp[i][0] = 0;
		for(int j = 1;j <= k;j++){
			dp[i][j] = (MOD + rui[j] - rui[max(0ll, j-d)]) % MOD;
		}
	}

	cout << dp[n][k] << endl;

	return 0;
}
0