結果

問題 No.1043 直列大学
ユーザー monkukui2monkukui2
提出日時 2020-05-01 21:45:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,383 bytes
コンパイル時間 1,029 ms
コンパイル使用メモリ 102,940 KB
実行使用メモリ 83,676 KB
最終ジャッジ日時 2024-06-07 04:13:20
合計ジャッジ時間 5,784 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,128 KB
testcase_01 AC 8 ms
6,492 KB
testcase_02 AC 16 ms
9,428 KB
testcase_03 WA -
testcase_04 AC 8 ms
6,360 KB
testcase_05 AC 11 ms
6,484 KB
testcase_06 AC 10 ms
6,488 KB
testcase_07 WA -
testcase_08 AC 14 ms
8,020 KB
testcase_09 AC 83 ms
44,576 KB
testcase_10 AC 100 ms
57,944 KB
testcase_11 AC 143 ms
78,940 KB
testcase_12 AC 256 ms
83,676 KB
testcase_13 AC 199 ms
81,664 KB
testcase_14 AC 210 ms
82,268 KB
testcase_15 AC 244 ms
80,896 KB
testcase_16 AC 209 ms
73,564 KB
testcase_17 AC 138 ms
60,248 KB
testcase_18 AC 131 ms
63,756 KB
testcase_19 AC 193 ms
80,912 KB
testcase_20 AC 131 ms
61,144 KB
testcase_21 AC 174 ms
79,304 KB
testcase_22 AC 184 ms
76,952 KB
testcase_23 AC 249 ms
82,908 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 93 ms
51,672 KB
testcase_28 AC 162 ms
75,868 KB
testcase_29 AC 45 ms
29,144 KB
testcase_30 AC 161 ms
76,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <deque>
#include <list>
#include <queue>
#include <stack>
#include <vector>
#include <utility>
#include <algorithm>
#include <map>
#include <set>
#include <complex>
#include <cmath>
#include <limits>
#include <climits>
#include <ctime>
#include <cassert>
#include <numeric>
#include <functional>
#include <bitset>

using namespace std;
using lint = long long int;
long long int INF = 1001001001001001LL;
int inf = 1000000007;
long long int MOD = 1000000007LL;
double PI = 3.1415926535897932;

template<typename T1,typename T2>inline void chmin(T1 &a,const T2 &b){if(a>b) a=b;}
template<typename T1,typename T2>inline void chmax(T1 &a,const T2 &b){if(a<b) a=b;}

#define ALL(a) a.begin(),a.end()
#define RALL(a) a.rbegin(),a.rend()

/* do your best */

vector<lint> culc(vector<lint> a) {
  int n = a.size();
  lint m = 100 * 1000;
  vector<vector<lint>> dp(n + 1, vector<lint> (m + 1, 0));
  dp[0][0] = 1;
  for (int i = 0; i < n; i++) {
    for (int j = 0; j <= m; j++) {
      if (dp[i][j] == 0) continue;

      dp[i + 1][j] += dp[i][j];
      dp[i + 1][j] %= MOD;

      dp[i + 1][j + a[i]] += dp[i][j];
      dp[i + 1][j + a[i]] %= MOD;
    }
  }
  return dp[n];
}

// 抽象累積和
// 構築 O(n), get O(1)

template<typename T>
struct CumSum{
private: 
  size_t n;
  vector<T> dat;

public: 
  CumSum(const vector<T> &v){
    n = v.size();
    dat.resize(n + 1, 0);
    for(size_t i = 0; i < n; i++){
      dat[i + 1] = dat[i] + v[i];
      dat[i + 1] %= MOD;
    }
  }

  T get(size_t r) const { // 0-indexed, [0. r)
    return dat[r];
  }

  T get(size_t l, size_t r){ // 0-indexed, [l, r)
    return (dat[r] - dat[l] + MOD) % MOD;
  }
};

int main() {
  
  int n, m; cin >> n >> m;
  vector<lint> v(n);
  vector<lint> r(m);
  for (int i = 0; i < n; i++) {
    cin >> v[i];
  }
  for (int i = 0; i < m; i++) {
    cin >> r[i];
  }

  lint a, b; cin >> a >> b;

  auto dp1 = culc(v);
  auto dp2 = culc(r);

  // 抵抗を決め打ち

  CumSum<lint> acc(dp1);


  lint ans = 0;
  for (int r = 1; r <= 100 * 1000; r++) {
    // 範囲が決ま
    lint lb = a * r;
    lint rb = b * r;
    // [l, r]
    rb = min(rb, (lint)dp1.size() - 1);

    if (rb <= lb) continue;
    lint sum = acc.get(lb, rb + 1);
    ans += sum * dp2[r];

    ans %= MOD;

  }

  cout << ans << endl;
  return 0;
}
0