結果

問題 No.269 見栄っ張りの募金活動
ユーザー motimoti
提出日時 2015-08-28 03:28:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,181 ms / 5,000 ms
コード長 925 bytes
コンパイル時間 703 ms
コンパイル使用メモリ 89,572 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-16 01:49:15
合計ジャッジ時間 5,119 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 5 ms
6,944 KB
testcase_04 AC 827 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1,181 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 358 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 158 ms
6,944 KB
testcase_14 AC 108 ms
6,940 KB
testcase_15 AC 227 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 238 ms
6,940 KB
testcase_19 AC 76 ms
6,944 KB
testcase_20 AC 50 ms
6,940 KB
testcase_21 AC 170 ms
6,944 KB
testcase_22 AC 56 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 136 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <complex>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <iomanip>
#include <assert.h>
#include <array>
#include <cstdio>

using namespace std;

#define REP(i,a,b) for(int i=a;i<(int)b;i++)
#define rep(i,n) REP(i,0,n)

int const MOD = 1e9+7;

typedef long long ll;

int dp[2][20001];

int main() {

  int N, S, K; cin >> N >> S >> K;
  S -= N*(N-1)/2*K;
  if(S < 0) { cout << 0 << endl; return 0; }
  dp[0][S] = 1;
  for(int i=0; i<N; i++) {
    rep(j, 20001) dp[(i+1)&1][j] = 0;
    rep(j, S+1) {
      if(!dp[i&1][j]) { continue; }
      rep(k, j/(N-i)+1) {
        dp[(i+1)&1][j-k*(N-i)] += dp[i&1][j];
        if(dp[(i+1)&1][j-k*(N-i)] >= MOD) {
          dp[(i+1)&1][j-k*(N-i)] -= MOD;
        }
      }
    }
  }

  cout << dp[N&1][0] << endl;

  return 0;
}
0