結果

問題 No.269 見栄っ張りの募金活動
ユーザー omuomu
提出日時 2015-08-22 20:33:23
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,604 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 87,588 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-07-18 12:49:48
合計ジャッジ時間 11,834 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
11,168 KB
testcase_01 AC 3 ms
11,188 KB
testcase_02 AC 4 ms
11,212 KB
testcase_03 AC 17 ms
11,144 KB
testcase_04 AC 3,911 ms
11,064 KB
testcase_05 AC 5 ms
11,076 KB
testcase_06 AC 4 ms
11,288 KB
testcase_07 TLE -
testcase_08 AC 5 ms
11,260 KB
testcase_09 AC 3 ms
11,296 KB
testcase_10 AC 4 ms
11,208 KB
testcase_11 AC 1,786 ms
11,180 KB
testcase_12 AC 6 ms
11,176 KB
testcase_13 AC 792 ms
11,228 KB
testcase_14 AC 570 ms
11,256 KB
testcase_15 AC 1,122 ms
11,164 KB
testcase_16 AC 4 ms
11,188 KB
testcase_17 AC 3 ms
11,228 KB
testcase_18 AC 1,315 ms
11,224 KB
testcase_19 AC 394 ms
11,196 KB
testcase_20 AC 255 ms
11,216 KB
testcase_21 AC 886 ms
11,384 KB
testcase_22 AC 276 ms
11,084 KB
testcase_23 AC 10 ms
11,172 KB
testcase_24 AC 702 ms
11,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <string>
#include <cstring>
#include <sstream>
#include <algorithm>
#include <functional>
#include <queue>
#include <stack>
#include <cmath>
#include <iomanip>
#include <list>
#include <tuple>
#include <bitset>
#include <ciso646>

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<int, int> P;
typedef tuple<int, int, int> T;

inline bool cheak(ll x, ll y, ll xMax, ll yMax){ return x >= 0 && y >= 0 && xMax > x && yMax > y; }
inline ll toInt(string s) { ll v; istringstream sin(s); sin >> v; return v; }
template<class T> inline string toString(T x) { ostringstream sout; sout << x; return sout.str(); }
template<class T> inline T sqr(T x) { return x*x; }

#define For(i,a,b)	for(ll (i) = (a);i < (b);(i)++)
#define rep(i,n)	For(i,0,n)
#define clr(a)		memset((a), 0 ,sizeof(a))
#define mclr(a)		memset((a), -1 ,sizeof(a))
#define all(a)		(a).begin(),(a).end()
#define sz(a)		(sizeof(a))

const int dx[8] = { 1, 0, -1, 0, 1, 1, -1, -1 }, dy[8] = { 0, -1, 0, 1, -1, 1, -1, 1 };
const ll mod = 1e9 + 7;
const ll INF = 1e9 + 2;

int n, s, k;
int dp[101][20001];

int dfs(int m, int v){
	if (dp[m][v] != -1)return dp[m][v];

	if (m == n){
		if (v == s){
			return 1;
		}else{
			return 0;
		}
	}
	int ret = 0;
	for (int i = 0; v + i * (n - m) <= s; i++){
		ret += dfs(m + 1, v + i * (n - m));
		ret %= mod;
	}
	return dp[m][v] = ret;
}

int main(){

	mclr(dp);
	cin >> n >> s >> k;
	s -= k * n * (n - 1) / 2;
	cout << dfs(0, 0) << endl;

	return 0;
}
0