結果
問題 | No.1011 Infinite Stairs |
ユーザー | jjjjjjjtgpptmjj |
提出日時 | 2020-03-20 22:10:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,780 bytes |
コンパイル時間 | 1,770 ms |
コンパイル使用メモリ | 171,532 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-12-15 06:11:55 |
合計ジャッジ時間 | 29,934 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,632 KB |
testcase_01 | AC | 2 ms
10,912 KB |
testcase_02 | AC | 10 ms
13,636 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | AC | 2 ms
13,632 KB |
testcase_07 | AC | 351 ms
11,052 KB |
testcase_08 | AC | 2 ms
13,636 KB |
testcase_09 | AC | 2 ms
11,184 KB |
testcase_10 | AC | 144 ms
13,636 KB |
testcase_11 | AC | 1,538 ms
6,820 KB |
testcase_12 | AC | 34 ms
6,816 KB |
testcase_13 | AC | 1,369 ms
6,816 KB |
testcase_14 | AC | 24 ms
6,816 KB |
testcase_15 | AC | 287 ms
6,820 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 1,284 ms
6,816 KB |
testcase_19 | AC | 7 ms
6,816 KB |
testcase_20 | AC | 161 ms
6,816 KB |
testcase_21 | AC | 877 ms
6,820 KB |
testcase_22 | TLE | - |
testcase_23 | AC | 973 ms
6,816 KB |
testcase_24 | AC | 519 ms
6,820 KB |
testcase_25 | AC | 963 ms
6,820 KB |
testcase_26 | AC | 370 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,N) for(int i=0;i<int(N);++i) #define rep1(i,N) for(int i=1;i<int(N);++i) #define all(a) (a).begin(),(a).end() #define print(v) { cerr<<#v<<": [ "; for(auto _ : v) cerr<<_<<", "; cerr<<"]"<<endl; } #define printpair(v) { cerr<<#v<<": [ "; for(auto _ : v) cerr<<"{"<<_.first<<","<<_.second<<"}"<<", "; cerr<<"]"<<endl; } #define dump(x) cerr<<#x<<": "<<x<<endl; #define bit(k) (1LL<<(k)) #define Yes "Yes" #define No "No" #define YES "YES" #define NO "NO" typedef long long ll; template <class T> using vec = vector<T>; template <class T> using vvec = vector<vec<T>>; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } const int INF = (ll)1e9; const ll INFLL = (ll)1e18+1; const ll MOD = (ll)1e9+7; const double PI = acos(-1.0); /* const int dx[8] = {1, 0, -1, 0, 1, -1, -1, 1}; const int dy[8] = {0, 1, 0, -1, 1, 1, -1, -1}; const string dir = "DRUL"; */ struct mint { long long x; mint(long long _x=0):x((_x%MOD+MOD)%MOD){} mint operator-() const { return mint(-x);} 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) 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 modpow(long long t) const { if (!t) return 1; mint a = modpow(t>>1); a *= a; if (t&1) a *= *this; return a; } // for prime MOD mint inv() const { return modpow(MOD-2); } mint& operator/=(const mint a) { return (*this) *= a.inv(); } mint operator/(const mint a) const { mint res(*this); return res/=a; } friend std::ostream& operator<<(std::ostream& os, const mint& a){ os << a.x; return os; } }; vector<mint> dp; int main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); int N, d, K; cin >> N >> d >> K; dp.assign(N * d + d * 4, 0); dp[0] = 1; rep(k, N){ vector<mint> next(N * d + d * 4, 0); rep(i,N * d + 1){ rep1(j,d+1){ next[i+j] += dp[i]; } } //print(next); swap(dp, next); } cout << dp[K] << endl; }