結果

問題 No.1043 直列大学
ユーザー tactac
提出日時 2020-05-02 16:39:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 4,304 bytes
コンパイル時間 4,096 ms
コンパイル使用メモリ 205,648 KB
実行使用メモリ 162,200 KB
最終ジャッジ日時 2023-08-28 22:11:20
合計ジャッジ時間 7,956 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
8,320 KB
testcase_01 AC 7 ms
6,732 KB
testcase_02 AC 14 ms
13,080 KB
testcase_03 AC 7 ms
6,752 KB
testcase_04 AC 7 ms
6,728 KB
testcase_05 AC 7 ms
6,772 KB
testcase_06 AC 7 ms
6,848 KB
testcase_07 AC 11 ms
9,980 KB
testcase_08 AC 11 ms
9,908 KB
testcase_09 AC 89 ms
83,816 KB
testcase_10 AC 104 ms
99,252 KB
testcase_11 AC 150 ms
148,632 KB
testcase_12 RE -
testcase_13 AC 150 ms
135,348 KB
testcase_14 AC 153 ms
143,136 KB
testcase_15 AC 166 ms
156,572 KB
testcase_16 AC 144 ms
140,076 KB
testcase_17 AC 107 ms
103,232 KB
testcase_18 AC 109 ms
103,400 KB
testcase_19 AC 138 ms
132,256 KB
testcase_20 AC 105 ms
100,952 KB
testcase_21 AC 128 ms
122,016 KB
testcase_22 AC 133 ms
127,556 KB
testcase_23 AC 165 ms
160,440 KB
testcase_24 AC 118 ms
113,356 KB
testcase_25 AC 138 ms
133,940 KB
testcase_26 AC 149 ms
143,400 KB
testcase_27 AC 75 ms
70,972 KB
testcase_28 AC 139 ms
132,220 KB
testcase_29 AC 47 ms
44,448 KB
testcase_30 AC 105 ms
100,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define F first
#define S second
#define pii pair<int, int>
#define eb emplace_back
#define all(v) v.begin(), v.end()
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep3(i, l, n) for (int i = l; i < (n); ++i)
#define sz(v) (int)v.size()
#define endl '\n'
const int inf = 1000000007;
const ll INF = 1e18;
// int mod = 998244353;
int mod = 1000000007;
#define abs(x) (x >= 0 ? x : -(x))
#define lb(v, x) (int)(lower_bound(all(v), x) - v.begin())
#define ub(v, x) (int)(upper_bound(all(v), x) - v.begin())
template<typename T1, typename T2> inline bool chmin(T1 &a, T2 b) { if (a > b) { a = b; return 1; } return 0; }
template<typename T1, typename T2> inline bool chmax(T1 &a, T2 b) { if (a < b) { a = b; return 1; } return 0; }
ll gcd(ll a, ll b) { if (b == 0) return a; return gcd(b, a % b); }
ll lcm(ll a, ll b) { return a / gcd(a, b) * b; }
ll pow(ll a, int b) { return b ? pow(a * a, b / 2) * (b % 2 ? a : 1) : 1; }
ll modpow(ll a, ll b, ll _mod) { return b ? modpow(a * a % _mod, b / 2, _mod) * (b % 2 ? a : 1) % _mod : 1; }
template<class T, class U> ostream& operator << (ostream& os, const pair<T, U>& p) { os << p.F << " " << p.S; return os; }
template<class T> ostream& operator << (ostream& os, const vector<T>& vec) { rep(i, sz(vec)) { if (i) os << " "; os << vec[i]; } return os; }
template<typename T> inline istream& operator >> (istream& is, vector<T>& v) { rep(j, sz(v)) is >> v[j]; return is; }
template<class T, class T2> inline void add(T &a, T2 b) { a += b; if (a >= mod) a -= mod; }


void solve();

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  cout.tie(0);
  cout << fixed << setprecision(10);
  int T;
  T = 1;
  while (T--) solve();
}

struct mint {
  ll x;
  mint (ll x = 0) : x(x >= 0 ? x % mod : (mod + x % mod) % mod) {}
  mint operator -() const { return mint(-x); }
  mint& operator += (const mint a) { // コンストラクタの、modで割った余りがくる
    if ((x += a.x) >= mod) x -= mod;
    return *this;
  }
  mint& operator -= (const mint a) {
    if ((x += -a.x + mod) >= mod) x -= mod;
    return *this;
  }
  mint& operator *= (const mint a) {
    (x *= a.x) %= mod;
    return *this;
  }
  mint operator + (const mint a) const {
    mint res(*this);
    return res += a; // ?
  }
  mint operator - (const mint a) const {
    mint res(*this);
    return res -= a;
  }
  mint operator * (const mint a) const {
    mint res(*this);
    return res *= a;
  }
  mint pow(ll t) const { // mint(a).pow(t) tは余りとったりしたらあかん
    if (t == 0) return 1;
    mint a = pow(t >> 1); // 再帰
    a *= a;
    if (t & 1) a *= *this;
    return a;
  }

  // 逆元
  mint inv() const {
    return pow(mod - 2);
  }
  mint& operator /= (const mint a) { // invを利用
    return (*this) *= a.inv();
  }
  mint operator / (const mint a) const {
    mint res(*this);
    return res /= a;
  }
  friend ostream &operator<<(ostream &s, mint a) { return s << a.x; }
};

// https://yukicoder.me/submissions/474362
const int N = 100105;
void solve() {
  int n, m;
  cin >> n >> m;
  vector<int> v(n);
  cin >> v;
  vector<int> r(m);
  cin >> r;
  int a, b;
  cin >> a >> b;
  auto make = [&](int n, vector<int> v) {
    vector<vector<mint> > dp(n + 1, vector<mint>(N));
    dp[0][0] = 1;
    rep(i, n) rep(j, N) {
      dp[i + 1][j] += dp[i][j];
      if (j + v[i] < N) dp[i + 1][j + v[i]] += dp[i][j];
    }
    dp[n][0] = 0;
    rep3(j, 1, N) dp[n][j] += dp[n][j - 1];
    return dp;
  };
  vector<vector<mint> > dp = make(n, v), dp2 = make(m, r);

  mint ans = 0;
  /*
  rep3(V, 1, N) {
    int R2 = V / a - 2;
    int tmp = R2;
    rep3(i, -3, 4) {
      if (tmp + i <= 0) continue;
      if (V / (tmp + i) < a) chmin(R2, tmp + i);
      else chmax(R2, tmp + i);
    }
    int R = V / b + 2;
    tmp = R;
    rep3(i, -3, 4) {
      if (tmp + i <= 0) continue;
      if (V / (tmp + i) > b) chmax(R, tmp + i);
      else chmin(R, tmp + i);
    }
    cout << V << " " << R2 << " " << R << endl;
    R--;
    ans += (dp[n][V] - dp[n][V - 1]) * (dp2[m][R2] - dp2[m][R]);
  }
  */

  rep3(R, 1, N) {
    ll l = R * a;
    if (l >= N) break;
    ll r = min(R * b, N - 1);
    ans += (dp2[m][R] - dp2[m][R - 1]) * (dp[n][r] - dp[n][l - 1]);
  }
  cout << ans << endl;
}
0