結果
問題 | No.1011 Infinite Stairs |
ユーザー | hiroaki0615 |
提出日時 | 2020-03-20 21:42:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,368 bytes |
コンパイル時間 | 702 ms |
コンパイル使用メモリ | 71,500 KB |
実行使用メモリ | 150,044 KB |
最終ジャッジ日時 | 2024-05-08 21:29:04 |
合計ジャッジ時間 | 4,153 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 10 ms
6,144 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<iostream> #include<vector> #include<string> #define rep(i, start, end) for (int i = (int)start; i < (int)end; ++i) #define rrep(i, start, end) for (int i = (int)start - 1; i >= (int)end; --i) #define all(x) (x).begin(), (x).end() using namespace std; using ll = long long; template<typename T> inline bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return 0;} template<typename T> inline bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return 0;} template<typename T, long long MOD_VALUE> class ModInt { static constexpr long long MOD = MOD_VALUE; private: T value_; public: ModInt() {} ModInt(const T& value) {if (value >= 0) {value_ = value % MOD;} else {T k = (MOD - 1 - value) / MOD; value_ = (value + k * MOD) % MOD;}} ModInt& operator+=(const ModInt& x) {value_ += x.value_; if (value_ >= MOD) value_ -= MOD; return *this;} friend ModInt& operator+=(const T& x, const ModInt& y) {ModInt res(x); res.value_ += x.value_; if (res.value_ >= MOD) res.value_ -= MOD; return res;} ModInt& operator-=(const ModInt& x) {if (value_ < x.value_) value_ += MOD; value_ -= x.value_; return *this;} friend ModInt& operator-=(const T& x, const ModInt& y) {ModInt res(x); if (res.value_ < y.value_) res.value_ += MOD; res.value_ -= y.value_; return res;} ModInt& operator*=(const ModInt& x) {value_ = (value_ * x.value_) % MOD; return *this;} friend ModInt& operator*=(const T& x, const ModInt& y) {ModInt res(x); res.value_ = (res.value_ * y.value_) % MOD; return res;} const ModInt operator+(const ModInt& x) const {return ModInt(*this) += x;} friend const ModInt operator+(const T& x, const ModInt& y) {return ModInt(x) += y;} const ModInt operator-(const ModInt& x) const {return ModInt(*this) -= x;} friend const ModInt operator-(const T& x, const ModInt& y) {return ModInt(x) -= y;} const ModInt operator*(const ModInt& x) const {return ModInt(*this) *= x;} friend const ModInt operator*(const T& x, const ModInt& y) {return ModInt(x) *= y;} static ModInt modpow(ModInt x, long long y) {ModInt z = 1; while (y > 0) {if (y & 1) {z *= x;}x *= x; y /= 2;} return z;} ModInt& operator/=(const ModInt& x) {return *this *= modpow(x, MOD - 2);} const ModInt operator/(const ModInt& x) const {return ModInt(*this) /= x;} friend const ModInt operator/(const T& x, const ModInt& y) {return ModInt(x) /= y;} ModInt operator++(int) {ModInt tmp(*this); value_ = (value_ + 1 == MOD ? 0 : value_ + 1); return tmp;} ModInt operator--(int) {ModInt tmp(*this); value_ = (value_ - 1 < 0 ? MOD - 1 : value_ - 1); return tmp;} friend istream& operator>>(istream& stream, ModInt& x) {stream >> x.value_; x.value_ %= MOD; return stream;} friend ostream& operator<<(ostream& stream, const ModInt& x) {stream << x.value_; return stream;} }; using mint = ModInt<ll, 1000000007>; int main() { cin.tie(0); ios::sync_with_stdio(false); int N, D, K; cin >> N >> D >> K; vector<vector<mint>> dp(N + 1, vector<mint>(K + 1, 0)); dp[0][0] = 1; rep(i, 0, N) rep(j, 0, K + 1) { rep(k, 1, D + 1) { if (j + k <= K) { dp[i + 1][j + k] += dp[i][j]; } } } cout << dp[N][K] << endl; return 0; }