結果

問題 No.269 見栄っ張りの募金活動
ユーザー sugim48sugim48
提出日時 2015-08-21 22:53:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4,493 ms / 5,000 ms
コード長 1,132 bytes
コンパイル時間 659 ms
コンパイル使用メモリ 85,360 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-16 01:29:07
合計ジャッジ時間 16,091 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 17 ms
6,940 KB
testcase_04 AC 3,210 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 4,493 ms
11,136 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 19 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1,554 ms
6,940 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 658 ms
6,944 KB
testcase_14 AC 482 ms
6,944 KB
testcase_15 AC 924 ms
6,944 KB
testcase_16 AC 24 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 1,130 ms
8,192 KB
testcase_19 AC 348 ms
6,944 KB
testcase_20 AC 217 ms
6,944 KB
testcase_21 AC 761 ms
6,944 KB
testcase_22 AC 227 ms
6,944 KB
testcase_23 AC 7 ms
6,940 KB
testcase_24 AC 574 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <algorithm>
#include <cstdio>
#include <functional>
#include <iostream>
#include <cfloat>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <time.h>
#include <vector>
using namespace std;
 
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> i_i;
typedef pair<ll, int> ll_i;
typedef pair<double, int> d_i;
typedef pair<ll, ll> ll_ll;
typedef pair<double, double> d_d;
struct edge { int u, v; ll w; };
 
ll MOD = 1000000007;
ll _MOD = 1000000009;
double EPS = 1e-10;
int INF = INT_MAX / 10;

int K, unko;

int f(int N, int S, vector<vector<int> >& memo) {
	if (memo[N][S] != -1) return memo[N][S];
	if (N == 0) return S == 0;
	int sum = 0;
	for (int y = (N == unko ? 0 : K); N * y <= S; y++) {
		sum += f(N - 1, S - N * y, memo);
		if (sum >= MOD) sum -= MOD;
	}
	return memo[N][S] = sum;
}

int main() {
	int N, S; cin >> N >> S >> K;
	unko = N;
	vector<vector<int> > memo(N + 1, vector<int>(S + 1, -1));
	cout << f(N, S, memo) << endl;
}
0