結果

問題 No.503 配列コレクション
ユーザー PulmnPulmn
提出日時 2017-02-16 11:55:45
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 559 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 62,864 KB
実行使用メモリ 49,152 KB
最終ジャッジ日時 2024-06-09 20:36:54
合計ジャッジ時間 6,292 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,756 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 7 ms
6,944 KB
testcase_12 AC 239 ms
15,872 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 25 ms
17,500 KB
testcase_15 AC 1,537 ms
14,976 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 286 ms
18,176 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
typedef long long ll;
typedef vector<ll> vl;
typedef vector<vl> vvl;

const ll mod=1e9+7;

ll n,k,d;

int main(){
	cin>>n>>k>>d;
	ll a=n%(k-1)==0?k-1:n%(k-1),b=(n-a)/(k-1);
	if(d==1){
		cout<<b<<endl;
		return 0;
	}
	vvl dp(a+1,vl(b+1)),DP(a+1,vl(b+1));
	dp[0][0]=1;
	for(int i=1;i<=a;i++) for(int j=0;j<=b;j++){
		ll x=0,y=0,z=0;
		for(int k=0;k<=j;k++){
			x=(x+dp[i-1][k])%mod;
			y=(y+DP[i-1][k])%mod;
			z=(z*d+dp[i-1][k])%mod;
		}
		dp[i][j]=x;
		DP[i][j]=(y+z)%mod;
	}
	cout<<DP[a][b]<<endl;
}
0