結果

問題 No.1043 直列大学
ユーザー shop_oneshop_one
提出日時 2020-05-01 22:26:59
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,271 bytes
コンパイル時間 744 ms
コンパイル使用メモリ 95,156 KB
実行使用メモリ 83,416 KB
最終ジャッジ日時 2023-08-26 15:08:49
合計ジャッジ時間 29,915 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
83,112 KB
testcase_01 AC 106 ms
82,896 KB
testcase_02 AC 158 ms
83,196 KB
testcase_03 AC 101 ms
83,308 KB
testcase_04 AC 101 ms
83,256 KB
testcase_05 AC 95 ms
83,252 KB
testcase_06 AC 96 ms
83,256 KB
testcase_07 AC 133 ms
83,168 KB
testcase_08 AC 129 ms
83,236 KB
testcase_09 AC 836 ms
83,204 KB
testcase_10 AC 1,006 ms
83,128 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,355 ms
83,224 KB
testcase_14 AC 1,445 ms
83,132 KB
testcase_15 AC 1,574 ms
83,108 KB
testcase_16 AC 1,382 ms
83,088 KB
testcase_17 AC 1,047 ms
83,224 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1,216 ms
83,112 KB
testcase_22 AC 1,258 ms
83,172 KB
testcase_23 AC 1,593 ms
83,388 KB
testcase_24 AC 1,152 ms
83,116 KB
testcase_25 AC 1,334 ms
83,348 KB
testcase_26 AC 1,472 ms
83,192 KB
testcase_27 AC 749 ms
83,112 KB
testcase_28 AC 1,317 ms
83,196 KB
testcase_29 AC 470 ms
83,348 KB
testcase_30 AC 1,008 ms
83,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// I SELL YOU...! 
#include<iostream>
#include<vector>
#include<algorithm>
#include<functional>
#include<queue>
#include<chrono>
#include<iomanip>
#include<map>
#include<set>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
using TP = tuple<ll,ll,ll>;
void init_io(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(18);
}
#define MOD 1000000007
#define MAX 2050000
ll vsum[MAX][2]={},rsum[MAX][2]={};
void solve_dp(ll dp[MAX][2],vector<ll> &v,ll n){
  dp[0][0] = 1;
  for(int i=0;i<n;i++){
    for(int j=0;j<MAX;j++){
      dp[j][1] = dp[j][0];
      if(j>=v[i]){
        dp[j][1] += dp[j-v[i]][0];
        dp[j][1] %= MOD;
      }
    }
    for(int j=0;j<MAX;j++){
      dp[j][0] = dp[j][1];
    }
  }
}
signed main(){
  init_io();
  ll n,m,a,b,ans=0;
  cin >> n >> m;
  vector<ll> v(n),r(m);
  vector<ll> sum(MAX,0);
  for(int i=0;i<n;i++){
    cin >> v[i];
  }
  for(int i=0;i<m;i++){
    cin >> r[i];
  }
  solve_dp(vsum,v,n);
  solve_dp(rsum,r,m);
  sum[0] = vsum[0][0];
  for(int i=1;i<MAX;i++){
    sum[i] = (sum[i-1] + vsum[i][0])%MOD;
  }
  cin >> a >> b;
  for(int i=1;i<MAX;i++){
    ll l = a*i,r=i*b;
    if(r>=MAX) break;
    ans = (ans+((sum[r]-sum[l-1])*rsum[i][0])%MOD+MOD)%MOD;
  }
  cout << ans << endl;
}
0