結果
問題 | No.1011 Infinite Stairs |
ユーザー | dekomori_sanae |
提出日時 | 2020-03-24 12:43:37 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 479 ms / 2,000 ms |
コード長 | 1,252 bytes |
コンパイル時間 | 941 ms |
コンパイル使用メモリ | 89,060 KB |
実行使用メモリ | 427,532 KB |
最終ジャッジ日時 | 2024-07-17 12:01:56 |
合計ジャッジ時間 | 3,675 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 9 ms
9,088 KB |
testcase_03 | AC | 316 ms
281,856 KB |
testcase_04 | AC | 55 ms
50,432 KB |
testcase_05 | AC | 479 ms
427,532 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 5 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 4 ms
6,944 KB |
testcase_11 | AC | 66 ms
60,160 KB |
testcase_12 | AC | 4 ms
6,944 KB |
testcase_13 | AC | 42 ms
38,016 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 54 ms
48,640 KB |
testcase_16 | AC | 224 ms
198,364 KB |
testcase_17 | AC | 21 ms
19,712 KB |
testcase_18 | AC | 132 ms
115,648 KB |
testcase_19 | AC | 4 ms
6,940 KB |
testcase_20 | AC | 3 ms
6,944 KB |
testcase_21 | AC | 56 ms
49,024 KB |
testcase_22 | AC | 109 ms
94,976 KB |
testcase_23 | AC | 66 ms
58,156 KB |
testcase_24 | AC | 73 ms
63,048 KB |
testcase_25 | AC | 116 ms
101,084 KB |
testcase_26 | AC | 25 ms
23,168 KB |
ソースコード
#include <iostream> #include <cstdio> #include <string> #include <algorithm> #include <utility> #include <cmath> #include <vector> #include <queue> #include <set> #include <map> #include <numeric> #include <functional> using namespace std; typedef long long ll; typedef vector<ll> vl; typedef vector<vector<ll>> vvl; typedef pair<ll, ll> P; #define rep(i, n) for(ll i = 0; i < n; i++) #define exrep(i, a, b) for(ll i = a; i <= b; i++) #define out(x) cout << x << endl #define exout(x) printf("%.10f\n", x) #define chmax(x, y) x = max(x, y) #define chmin(x, y) x = min(x, y) #define all(a) a.begin(), a.end() #define rall(a) a.rbegin(), a.rend() #define pb push_back #define re0 return 0 const ll mod = 1000000007; const ll INF = 1e16; const ll MAX_N = 100010; int main() { ll n, d, k; cin >> n >> d >> k; vvl dp(n+1, vl(k+1)); // dp[i][j] : i回の移動後、j段目にいる場合の数 vvl rui(n+1, vl(k+2)); // rui[i][j+1] : sum_{0 <= x <= j | dp[i][x]} dp[0][0] = 1; rep(i, n) { exrep(j, 0, k) { rui[i][j+1] = (rui[i][j] + dp[i][j])%mod; } exrep(j, 1, k) { dp[i+1][j] = (rui[i][j] + mod - rui[i][j - min(j, d)])%mod; } } out(dp[n][k]); re0; }