結果

問題 No.1011 Infinite Stairs
ユーザー hanbei_dayohanbei_dayo
提出日時 2020-03-26 02:57:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 407 ms / 2,000 ms
コード長 760 bytes
コンパイル時間 975 ms
コンパイル使用メモリ 84,020 KB
実行使用メモリ 427,144 KB
最終ジャッジ日時 2024-07-17 12:03:20
合計ジャッジ時間 4,713 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,628 KB
testcase_01 AC 3 ms
9,564 KB
testcase_02 AC 52 ms
177,224 KB
testcase_03 AC 298 ms
335,692 KB
testcase_04 AC 407 ms
426,760 KB
testcase_05 AC 319 ms
427,144 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 72 ms
162,780 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
7,640 KB
testcase_10 AC 27 ms
67,228 KB
testcase_11 AC 187 ms
278,964 KB
testcase_12 AC 18 ms
57,852 KB
testcase_13 AC 97 ms
174,608 KB
testcase_14 AC 23 ms
72,648 KB
testcase_15 AC 90 ms
209,000 KB
testcase_16 AC 236 ms
337,724 KB
testcase_17 AC 252 ms
357,104 KB
testcase_18 AC 137 ms
233,388 KB
testcase_19 AC 11 ms
41,288 KB
testcase_20 AC 20 ms
49,404 KB
testcase_21 AC 79 ms
152,564 KB
testcase_22 AC 210 ms
307,888 KB
testcase_23 AC 75 ms
137,064 KB
testcase_24 AC 80 ms
169,648 KB
testcase_25 AC 144 ms
244,296 KB
testcase_26 AC 43 ms
92,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<string>
#include<utility>
#include<map>
#include<set>
#include<queue>
#include<stack>
#include<functional>
#include<math.h>
using namespace std;
#define N (1000000000+7)
#define M (998244353)
#define INF 1e16
typedef long long ll;
typedef pair<int,int> P;
 

int  A(int x){
    if(x>=0)return x;
    else return -x;
}

ll dp[302][90010];
ll sum[302][90010];

int main(void){
    ll n,d,k;
    cin>>n>>d>>k;
    dp[0][0]=1;
    for(ll i=0;i<n;i++){
        for(ll j=0;j<d*n;j++){
            sum[i][j+1] = (sum[i][j]+dp[i][j])%N;
        }
        for(ll j=1;j<=d*n;j++){
            dp[i+1][j] = (sum[i][j]-sum[i][j-min(j,d)]+N)%N;
        }
    }
    cout<<(dp[n][k]+N)%N<<endl;
    return 0;
}
0