結果

問題 No.1238 選抜クラス
ユーザー snow39snow39
提出日時 2020-09-25 21:33:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 793 ms / 2,000 ms
コード長 1,166 bytes
コンパイル時間 1,042 ms
コンパイル使用メモリ 103,712 KB
実行使用メモリ 19,076 KB
最終ジャッジ日時 2024-06-28 06:10:28
合計ジャッジ時間 14,423 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 7 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 15 ms
5,572 KB
testcase_10 AC 6 ms
5,376 KB
testcase_11 AC 13 ms
5,632 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 9 ms
5,376 KB
testcase_14 AC 8 ms
5,376 KB
testcase_15 AC 15 ms
5,696 KB
testcase_16 AC 13 ms
5,504 KB
testcase_17 AC 774 ms
18,948 KB
testcase_18 AC 737 ms
18,560 KB
testcase_19 AC 744 ms
18,688 KB
testcase_20 AC 700 ms
18,176 KB
testcase_21 AC 661 ms
17,808 KB
testcase_22 AC 784 ms
19,072 KB
testcase_23 AC 783 ms
19,072 KB
testcase_24 AC 793 ms
18,952 KB
testcase_25 AC 779 ms
19,076 KB
testcase_26 AC 789 ms
18,948 KB
testcase_27 AC 775 ms
18,952 KB
testcase_28 AC 786 ms
19,076 KB
testcase_29 AC 766 ms
18,688 KB
testcase_30 AC 60 ms
8,064 KB
testcase_31 AC 218 ms
11,976 KB
testcase_32 AC 451 ms
15,616 KB
testcase_33 AC 5 ms
5,376 KB
testcase_34 AC 556 ms
16,640 KB
testcase_35 AC 97 ms
9,364 KB
testcase_36 AC 23 ms
6,272 KB
testcase_37 AC 65 ms
8,384 KB
testcase_38 AC 697 ms
18,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <cmath>
#include <map>
#include <queue>
#include <iomanip>
#include <set>
#include <tuple>
#define mkp make_pair
#define mkt make_tuple
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define all(v) v.begin(),v.end()
using namespace std;
typedef long long ll;
const ll MOD=1e9+7;
template<class T> void chmin(T &a,const T &b){if(a>b) a=b;}
template<class T> void chmax(T &a,const T &b){if(a<b) a=b;}

void add(ll &a,ll b){
  a=(a+b)%MOD;
}

void mul(ll &a,ll b){
  a%=MOD;b%=MOD;
  a=a*b%MOD;
}

const int L=1e4;

int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);

  int N,K;
  cin>>N>>K;
  vector<int> A(N);
  rep(i,N) cin>>A[i];

  vector<vector<ll>> dp(N+1,vector<ll> (L+1,0));
  dp[0][0]=1;
  for(int i=0;i<N;i++){
    vector<vector<ll>> ndp(N+1,vector<ll> (L+1,0));
    for(int j=0;j<=i;j++) for(int k=0;k<=L;k++){
      if(dp[j][k]==0) continue;
      add(ndp[j][k],dp[j][k]);
      add(ndp[j+1][k+A[i]],dp[j][k]);
    }
    dp=ndp;
  }

  ll ans=0;
  for(int j=1;j<=N;j++) for(int k=0;k<=L;k++){
    if(K*j<=k) add(ans,dp[j][k]);
  }
  cout<<ans<<endl;

  return 0;
}
0