結果

問題 No.535 自然数の収納方法
ユーザー PulmnPulmn
提出日時 2017-02-21 19:18:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 935 ms
コンパイル使用メモリ 66,596 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-06-09 17:23:16
合計ジャッジ時間 2,192 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 13 ms
13,824 KB
testcase_08 AC 45 ms
39,552 KB
testcase_09 AC 57 ms
49,152 KB
testcase_10 AC 72 ms
58,112 KB
testcase_11 AC 9 ms
9,472 KB
testcase_12 AC 28 ms
25,216 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 22 ms
19,712 KB
testcase_15 AC 75 ms
61,184 KB
testcase_16 AC 48 ms
39,168 KB
testcase_17 AC 81 ms
64,128 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 83 ms
65,408 KB
testcase_20 AC 83 ms
66,048 KB
testcase_21 AC 83 ms
66,176 KB
testcase_22 AC 83 ms
66,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const ll mod=1e9+7;

ll n;

int main(){
	cin>>n;
	vvl dp(n+1,vl(n+1)),DP(n+1,vl(n+1));
	dp[0][0]=1;
	DP[1][1]=1;
	vl a(n);
	for(int i=2;i<n;i++) a[i]=i-2;
	for(int i=1;i<=n;i++){
		vl s=dp[i-1],t=DP[i-1];
		for(int j=1;j<=n;j++){
			(s[j]+=s[j-1])%=mod;
			(t[j]+=t[j-1])%=mod;
		}
		for(int j=1;j<=n;j++){
			dp[i][j]=s[min(n,j+a[i-1])];
			if(i!=1) DP[i][j]=t[min(n,j+a[i-1])];
		}
	}
	ll sum=0;
	for(int i=1;i<=n;i++) (sum+=dp[n][i])%=mod;
	cout<<(sum-DP[n][n]+mod)%mod<<endl;
}
0