結果

問題 No.1043 直列大学
ユーザー betit0919betit0919
提出日時 2020-05-01 23:57:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,833 bytes
コンパイル時間 916 ms
コンパイル使用メモリ 114,340 KB
実行使用メモリ 8,836 KB
最終ジャッジ日時 2024-06-02 03:09:29
合計ジャッジ時間 2,723 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
8,704 KB
testcase_01 AC 7 ms
8,700 KB
testcase_02 AC 9 ms
8,700 KB
testcase_03 AC 7 ms
8,696 KB
testcase_04 AC 6 ms
8,644 KB
testcase_05 AC 7 ms
8,700 KB
testcase_06 AC 7 ms
8,696 KB
testcase_07 AC 8 ms
8,700 KB
testcase_08 AC 8 ms
8,700 KB
testcase_09 AC 31 ms
8,576 KB
testcase_10 AC 35 ms
8,712 KB
testcase_11 AC 52 ms
8,704 KB
testcase_12 AC 55 ms
8,580 KB
testcase_13 AC 47 ms
8,580 KB
testcase_14 AC 50 ms
8,584 KB
testcase_15 AC 54 ms
8,704 KB
testcase_16 AC 48 ms
8,580 KB
testcase_17 AC 36 ms
8,580 KB
testcase_18 AC 37 ms
8,708 KB
testcase_19 AC 47 ms
8,580 KB
testcase_20 AC 38 ms
8,580 KB
testcase_21 AC 44 ms
8,708 KB
testcase_22 AC 45 ms
8,708 KB
testcase_23 AC 57 ms
8,712 KB
testcase_24 AC 41 ms
8,708 KB
testcase_25 AC 48 ms
8,580 KB
testcase_26 AC 50 ms
8,708 KB
testcase_27 AC 28 ms
8,652 KB
testcase_28 AC 46 ms
8,580 KB
testcase_29 AC 19 ms
8,576 KB
testcase_30 AC 36 ms
8,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <cmath>
#include <string>
#include <vector>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <queue>
#include <numeric>
#include <random>
#include <algorithm>
#include <functional>
#include <cassert>

using namespace std;
typedef long long ll;

template<class T> inline bool chmin(T& a, T b) {
  if (a > b) {
    a = b;
    return true;
  }
  return false;
}
template<class T> inline bool chmax(T& a, T b) {
  if (a < b) {
    a = b;
    return true;
  }
  return false;
}

const int INF = (1 << 30) - 1;
const ll INFLL= (1LL << 61) - 1;
const int MOD = 1000000007;
#define ALL(a) (a).begin(),(a).end()
#define rALL(a) (a).rbegin(),(a).rend()
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)

int main(){
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  ll N,M,A,B;
  cin>>N>>M;
  vector<ll>V(N),R(M);
  vector<vector<ll>> dp1(2,vector<ll>(100001)),dp2(2,vector<ll>(100001));
  REP(i,N)cin>>V[i];
  REP(i,M)cin>>R[i];
  cin>>A>>B;
  dp1[0][0]=1;dp2[0][0]=1;

  REP(i,N){
    // V[i]を使うかどうか
    REP(j,100001){
      if(j-V[i]>=0){
        dp1[(i+1)%2][j] = dp1[i%2][j-V[i]] + dp1[i%2][j];
      }else{
        dp1[(i+1)%2][j] = dp1[i%2][j];
      }
      dp1[(i+1)%2][j]%=MOD;
    }
  }
  REP(i,M){
    // R[i]を使うかどうか
    REP(j,100001){
      if(j-R[i]>=0){
        dp2[(i+1)%2][j] = dp2[i%2][j-R[i]] + dp2[i%2][j];
      }else{
        dp2[(i+1)%2][j] = dp2[i%2][j];
      }
      dp2[(i+1)%2][j]%=MOD;
    }
  }
  vector<ll>v=dp1[N%2],r=dp2[M%2];
  vector<ll>Vsum(100002);
  REP(i,100001){
    Vsum[i+1]=Vsum[i]+v[i];
    Vsum[i+1]%=MOD;
  }
  ll ans=0;
  REP(i,100001){
    ans+=r[i]*(Vsum[min(100000ll,i*B+1)]-Vsum[min(100000ll,i*A)]);
    ans%=MOD;
  }
  cout<<(ans-1+MOD)%MOD<<endl;
}
0