結果
問題 | No.1011 Infinite Stairs |
ユーザー | uw_yu1rabbit |
提出日時 | 2020-08-25 17:32:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,874 bytes |
コンパイル時間 | 1,142 ms |
コンパイル使用メモリ | 80,828 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-06 11:32:39 |
合計ジャッジ時間 | 5,504 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include<iostream> #include<vector> using namespace std; using i32 = int_fast32_t; using i64 = int_fast64_t; #define rep(i, n) for (i32 i = 0; i < (i32)(n); i++) #define all(a) (a).begin(),(a).end() #define rall(a) (a).rbegin(),(a).rend() using P = pair<i64,i64>; constexpr i64 MAX = 10000000; constexpr i64 MOD = 1000000007; i64 fac[MAX], finv[MAX], inv[MAX]; template <i64 modulus> class modcal { public: i64 a; constexpr modcal(const i64 x = 0) noexcept : a(x % modulus) {} constexpr i64 &value() noexcept { return a; } constexpr const i64 &value() const noexcept { return a; } constexpr modcal operator+(const modcal rhs) const noexcept { return modcal(*this) += rhs; } constexpr modcal operator-(const modcal rhs) const noexcept { return modcal(*this) -= rhs; } constexpr modcal operator*(const modcal rhs) const noexcept { return modcal(*this) *= rhs; } constexpr modcal operator/(const modcal rhs) noexcept { return modcal(*this) /= rhs; } constexpr modcal &operator+=(const modcal rhs) noexcept { a += rhs.a; if (a >= modulus) { a -= modulus; } return *this; } constexpr modcal &operator-=(const modcal rhs) noexcept { if (a < rhs.a) { a += modulus; } a -= rhs.a; return *this; } constexpr modcal &operator*=(const modcal rhs) noexcept { a = a * rhs.a % modulus; return *this; } constexpr modcal &operator/=(modcal rhs) noexcept { i64 exp = modulus - 2; while (exp) { if (exp % 2) { *this *= rhs; } rhs *= rhs; exp /= 2; } return *this; } void COMninit() { fac[0] = fac[1] = 1; finv[0] = finv[1] = 1; inv[1] = 1; for (int i = 2; i < MAX; i++) { fac[i] = fac[i - 1] * i % modulus; inv[i] = MOD - inv[modulus % i] * (modulus / i) % modulus; finv[i] = finv[i - 1] * inv[i] % modulus; } } i64 COMn(i64 n, i64 k) { if (n < k) return 0; if (n < 0 || k < 0) return 0; return fac[n] * (finv[k] * finv[n - k] % modulus) % modulus; } constexpr modcal<1000000007> modpow(const modcal<1000000007> &a, i64 n) { if (n == 0) return 1; auto t = modpow(a, n / 2); t = t * t; if (n & 1) t = t * a; return t; } }; using modc = modcal<1000000007>; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); i64 n,d,k; cin >> n >> d >> k; vector<vector<modc>> dp(n + 1,vector<modc> (0,k + 1)); dp[0][0] = 1; rep(i,n){ rep(j,k){ if(dp[i][j].a != 0){ for(i64 l = 1; l < d + 1; l++){ if(j + l >= k){ dp[i + 1][j + l] += dp[i][j]; } } } } } cout << dp[n][k].a << endl; }