結果

問題 No.1043 直列大学
ユーザー tactac
提出日時 2020-05-02 17:37:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 4,371 bytes
コンパイル時間 3,332 ms
コンパイル使用メモリ 202,880 KB
実行使用メモリ 161,468 KB
最終ジャッジ日時 2023-08-29 00:33:30
合計ジャッジ時間 7,486 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
161,236 KB
testcase_01 AC 64 ms
161,232 KB
testcase_02 AC 65 ms
161,360 KB
testcase_03 AC 64 ms
161,292 KB
testcase_04 AC 64 ms
161,360 KB
testcase_05 AC 63 ms
161,192 KB
testcase_06 AC 64 ms
161,188 KB
testcase_07 AC 64 ms
161,384 KB
testcase_08 AC 64 ms
161,236 KB
testcase_09 AC 82 ms
161,196 KB
testcase_10 AC 86 ms
161,200 KB
testcase_11 AC 97 ms
161,428 KB
testcase_12 RE -
testcase_13 WA -
testcase_14 AC 87 ms
161,468 KB
testcase_15 AC 91 ms
161,316 KB
testcase_16 AC 87 ms
161,456 KB
testcase_17 AC 78 ms
161,248 KB
testcase_18 AC 85 ms
161,236 KB
testcase_19 AC 91 ms
161,304 KB
testcase_20 WA -
testcase_21 AC 90 ms
161,188 KB
testcase_22 AC 91 ms
161,368 KB
testcase_23 AC 99 ms
161,368 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 79 ms
161,192 KB
testcase_28 AC 92 ms
161,204 KB
testcase_29 AC 73 ms
161,256 KB
testcase_30 AC 85 ms
161,236 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) { 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 ll N = 100005;
mint dp[101][N], dp2[101][N];
void solve() {
  ll n, m;
  cin >> n >> m;
  vector<int> v(n);
  cin >> v;
  vector<int> r(m);
  cin >> r;
  ll a, b;
  cin >> a >> b;

  dp[0][0] = 1;
  rep(i, n) rep(j, N) {
    dp[i + 1][j] += dp[i][j];
    dp[i + 1][j + v[i]] += dp[i][j];
  }
  dp[n][0] = 0;
  rep3(j, 1, N) dp[n][j] += dp[n][j - 1];

  dp2[0][0] = 1;
  rep(i, m) rep(j, N) {
    dp2[i + 1][j] += dp2[i][j];
    dp2[i + 1][j + r[i]] += dp2[i][j];
  }
  dp2[m][0] = 0;
  rep3(j, 1, N) dp2[m][j] += dp2[m][j - 1];

  mint ans = 0;
  rep3(V, 1, N) {
    ll R2 = V / a - 2;
    ll 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);
    }
    ll R = V / b + 2;
    tmp = R;
    rep3(i, -3, 4) {
      if (tmp + i <= 0) continue;
      if ((V + tmp + i - 1) / (tmp + i) > b) chmax(R, tmp + i);
      else chmin(R, tmp + i);
    }
    // cout << V << " " << R2 << " " << R << endl;
    // V/抵抗 の切り捨てでない !! 小数部も考える
    ans += (dp[n][V] - dp[n][V - 1]) * (dp2[m][max(R2, R)] - dp2[m][min(R2, R) - 1]);
  }
  /*
  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