結果

問題 No.269 見栄っ張りの募金活動
ユーザー CleyLCleyL
提出日時 2020-03-16 17:52:47
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 940 ms / 5,000 ms
コード長 2,243 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 64,304 KB
実行使用メモリ 11,432 KB
最終ジャッジ日時 2023-08-18 19:22:38
合計ジャッジ時間 5,048 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
11,280 KB
testcase_01 AC 5 ms
11,304 KB
testcase_02 AC 6 ms
11,236 KB
testcase_03 AC 7 ms
11,236 KB
testcase_04 AC 670 ms
11,212 KB
testcase_05 AC 5 ms
11,404 KB
testcase_06 AC 5 ms
11,236 KB
testcase_07 AC 940 ms
11,368 KB
testcase_08 AC 5 ms
11,408 KB
testcase_09 AC 5 ms
11,308 KB
testcase_10 AC 5 ms
11,276 KB
testcase_11 AC 286 ms
11,280 KB
testcase_12 AC 5 ms
11,236 KB
testcase_13 AC 121 ms
11,208 KB
testcase_14 AC 83 ms
11,236 KB
testcase_15 AC 181 ms
11,220 KB
testcase_16 AC 5 ms
11,228 KB
testcase_17 AC 5 ms
11,224 KB
testcase_18 AC 183 ms
11,324 KB
testcase_19 AC 61 ms
11,432 KB
testcase_20 AC 41 ms
11,228 KB
testcase_21 AC 134 ms
11,208 KB
testcase_22 AC 45 ms
11,284 KB
testcase_23 AC 6 ms
11,244 KB
testcase_24 AC 107 ms
11,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <ctime>
using namespace std;
const int mod = 1000000007;
template <int mod>
struct ModInt{
  int n;
  ModInt():n(0){}
  ModInt(int n_):n(n_ >= 0 ? n_%mod : mod - ((-n_)%mod) ){}

  ModInt &operator+=(const ModInt &p){
    if((n+=p.n) >= mod)n-=mod;
    return *this;
  }
  ModInt &operator-=(const ModInt &p){
    n+=mod-p.n;
    if(n >= mod)n-=mod;
    return *this;
  }
  ModInt &operator*=(const ModInt &p){
    n = (int) ((1LL*n*p.n)%mod);
    return *this;
  }
  ModInt &operator/=(const ModInt &p){
    *this *= p.inverse();
    return *this;
  }
  ModInt operator-() const {return ModInt(-n);}
  ModInt operator+(const ModInt &p) const {return ModInt(*this) += p;}
  ModInt operator-(const ModInt &p) const {return ModInt(*this) -= p;}
  ModInt operator*(const ModInt &p) const {return ModInt(*this) *= p;}
  ModInt operator/(const ModInt &p) const {return ModInt(*this) /= p;}

  bool operator==(const ModInt &p) const {return n==p.n;}
  bool operator!=(const ModInt &p) const {return n!=p.n;}

  ModInt inverse() const {
    int a = n,b = mod,u = 1,v = 0;
    while(b){
      int t = a/b;
      a -= t*b; swap(a,b);
      u -= t*v; swap(u,v);
    }
    return ModInt(u);
  }

  ModInt pow(int64_t z) const {
    ModInt ret(1),mul(n);
    while(z > 0){
      if(z & 1) ret *= mul;
      mul *= mul;
      z >>= 1;
    }
    return ret;
  }

  friend ostream &operator<<(ostream &os, const ModInt &p){
    return os << p.n;
  }
  friend istream &operator>>(istream &is, ModInt &a){
    int64_t t;
    is >> t;
    a = ModInt<mod> (t);
    return (is);

  }
};
using mint = ModInt<mod>;
mint dp[101][20001];
int main(){
	//int ti = clock();
	int n,s,k;cin>>n>>s>>k;
	if(((n+(n-1))/2)*((n+(n-1))/2+1)/2*k > s){
		cout << 0 << endl;
		return 0;
	}
	s -= ((n+(n-1))/2)*((n+(n-1))/2+1)/2*k;
	dp[0][0] = 1;
	for(int i = 0; n > i; i++){
		for(int j = 0; s >= j; j++){
			if(dp[i][j] != 0){
				for(int l = 0; s >= j+l*(n-i); l++){
					dp[i+1][j+l*(n-i)]+=dp[i][j];
				}
			}
		}
		//cout << i << endl;
	}
	// for(int i = 0; n >= i; i++){
	// 	for(int j = 0; s >= j; j++){
	// 		cout << dp[i][j] << " ";

	// 	}
	// 	cout << endl;
	// }
	cout << dp[n][s] << endl;

	//cout << (double)ti/CLOCKS_PER_SEC << endl;

}
0