結果
問題 | No.1011 Infinite Stairs |
ユーザー | iqueue02 |
提出日時 | 2020-03-20 21:42:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,255 bytes |
コンパイル時間 | 1,869 ms |
コンパイル使用メモリ | 172,748 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-05-08 21:28:37 |
合計ジャッジ時間 | 5,486 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
9,680 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 69 ms
5,376 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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n);i++) #define sz(x) int(x.size()) typedef long long ll; typedef pair<int,int> P; constexpr int mod = 1e9+7; template <typename T> struct SegmentTree { int n; vector<T> node; T f(T a, T b) {return (a + b) % mod;} SegmentTree (int sz, T init = 0) { n = 1; while (n < sz) n <<= 1; node.assign(2*n, init); } void update(int k, T x) { k += (n - 1); node[k] = x; while (k > 0) { k = (k - 1) >> 1; node[k] = f(node[2*k+1], node[2*k+2]); } } T query(int a, int b, int k = 0, int l = 0, int r = -1) { if (r < 0) r = n; if (r <= a || b <= l) return 0; if (a <= l && r <= b) return node[k]; T vl = query(a, b, 2*k+1, l, (l+r)/2); T vr = query(a, b, 2*k+2, (l+r)/2, r); return f(vl, vr); } T getvalue(int k) { return query(k,k+1); } }; int main(){ int n, d, k; cin >> n >> d >> k; SegmentTree<int> dp(k+1,0); dp.update(0, 1); for (int i = 0; i < n; i++) { SegmentTree<int> ndp(k+1,0); for (int r = 0; r <= k; r++) { int l = max(0, r - d); ndp.update(r, dp.query(l, r)); } swap(dp, ndp); } cout << dp.query(k, k + 1) << endl; return 0; }