結果
問題 | No.1011 Infinite Stairs |
ユーザー | betit0919 |
提出日時 | 2020-03-21 17:47:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,194 bytes |
コンパイル時間 | 1,145 ms |
コンパイル使用メモリ | 112,596 KB |
実行使用メモリ | 215,844 KB |
最終ジャッジ日時 | 2024-06-02 09:33:19 |
合計ジャッジ時間 | 3,449 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 7 ms
6,144 KB |
testcase_03 | AC | 261 ms
143,232 KB |
testcase_04 | AC | 45 ms
26,880 KB |
testcase_05 | AC | 402 ms
215,844 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 5 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 34 ms
20,736 KB |
testcase_14 | WA | - |
testcase_15 | AC | 44 ms
25,984 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 108 ms
59,856 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 46 ms
26,112 KB |
testcase_22 | WA | - |
testcase_23 | AC | 54 ms
30,784 KB |
testcase_24 | AC | 58 ms
33,408 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
#include <iostream> #include <iomanip> #include <cmath> #include <string> #include <vector> #include <map> #include <unordered_map> #include <set> #include <unordered_set> #include <queue> #include <numeric> #include <random> #include <algorithm> #include <functional> #include <cassert> using namespace std; typedef long long ll; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } const int INF = (1 << 30) - 1; const ll INFLL= (1LL << 61) - 1; const int MOD = 1000000007; #define ALL(a) (a).begin(),(a).end() #define rALL(a) (a).rbegin(),(a).rend() #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define REP(i,n) FOR(i,0,n) int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); ll n,d,k;cin>>n>>d>>k; vector<vector<ll>> dp(n+1,vector<ll>(k+1)); dp[0][0]=1; REP(i,n){ vector<ll> sum(k+1); REP(j,k){ sum[j+1] = sum[j]+dp[i][j]; sum[j+1] %= MOD; } REP(j,k+1){ dp[i+1][j] = sum[j] - sum[max(0ll,j-d)]; dp[i+1][i] %= MOD; } } cout<<dp[n][k]%MOD<<endl; }