結果

問題 No.1011 Infinite Stairs
ユーザー zeronosu77108zeronosu77108
提出日時 2020-03-21 00:27:37
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 1,882 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 123,520 KB
実行使用メモリ 216,960 KB
最終ジャッジ日時 2024-07-17 11:56:19
合計ジャッジ時間 2,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 6 ms
6,940 KB
testcase_03 AC 177 ms
143,232 KB
testcase_04 AC 58 ms
27,520 KB
testcase_05 AC 265 ms
216,960 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 7 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 43 ms
32,128 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 26 ms
20,864 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 29 ms
25,856 KB
testcase_16 AC 133 ms
102,144 KB
testcase_17 AC 34 ms
11,904 KB
testcase_18 AC 73 ms
59,776 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 32 ms
26,752 KB
testcase_22 AC 73 ms
50,304 KB
testcase_23 AC 37 ms
31,232 KB
testcase_24 AC 40 ms
33,408 KB
testcase_25 AC 65 ms
52,480 KB
testcase_26 AC 14 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

using int64 = long long;

const int MOD = 1000000007;
struct mint {
    int64 x;
    mint(const int64 x1=0) { x = x1%MOD; };

    mint& operator++(int n) { x+=1; return *this; };
    mint& operator--(int n) { x-=1; return *this; };
    mint& operator=(int64 n) { x=n%MOD; return *this; };
    mint& operator--() {x-=1; return *this; };
    mint& operator+=(const mint a) { if ( (x+=a.x) >= MOD) x-=MOD; return *this; }
    mint& operator-=(const mint a) { if ( (x+= MOD-a.x) >= MOD) x-= MOD; return *this; }
    mint& operator*=(const mint a) { (x*=a.x) %= MOD; return *this; }
    mint& operator/=(const mint a) { return (*this) *= a.inv();}
    mint operator+(const mint a) const { mint res(*this); return res+=a; }
    mint operator-(const mint a) const { mint res(*this); return res-=a; }
    mint operator*(const mint a) const { mint res(*this); return res*=a; }
    mint operator/(const mint a) const { mint res(*this); return res/=a; }
    mint inv() const { return pow(MOD-2);}
    friend ostream& operator<<(ostream &os, const mint a) noexcept { return os << a.x; }
    constexpr bool operator == (const mint& r) const noexcept { return this->x == r.x; }
    constexpr bool operator != (const mint& r) const noexcept { return this->x != r.x; }
    mint pow(long long t) const {
        if (!t) return mint(1);
        mint a = pow(t>>1);
        a*=a;
        if(t&1) a*= *this;
        return a;
    }
};

int main() {
    int n, d, k;
    cin >> n >> d >> k;
    vector<vector<mint>> dp(n + 1, vector<mint>(k + d + 1, 0));
    dp[0][0] = 1;

    for (int i=0; i<n; i++) {
        for (int j=0; j<=d*n; j++) {
            if (j > k-1) continue;
            dp[i+1][j+1] += dp[i][j];
            dp[i+1][j+1+d] -= dp[i][j];
            dp[i+1][j+1] += dp[i+1][j];
        }
    }

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