結果

問題 No.802 だいたい等差数列
ユーザー risujirohrisujiroh
提出日時 2019-03-19 00:36:30
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 5,932 bytes
コンパイル時間 2,495 ms
コンパイル使用メモリ 195,392 KB
実行使用メモリ 35,656 KB
最終ジャッジ日時 2023-09-26 15:25:53
合計ジャッジ時間 6,764 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
4,376 KB
testcase_01 AC 24 ms
4,376 KB
testcase_02 AC 34 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 35 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 34 ms
4,380 KB
testcase_07 AC 24 ms
4,380 KB
testcase_08 AC 18 ms
4,380 KB
testcase_09 AC 29 ms
4,376 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long;
template<class T = int> using V = vector<T>;
template<class T = int> using VV = V< V<T> >;

template<unsigned P> struct ModInt {
  using M = ModInt;
  unsigned v;
  ModInt() : v(0) {}
  template<class Z> ModInt(Z x) : v(x >= 0 ? x % P : (P - -x % P) % P) {}
  constexpr ModInt(unsigned v, int) : v(v) {}
  static constexpr unsigned p() { return P; }
  M operator+() const { return *this; }
  M operator-() const { return {v ? P - v : 0, 0}; }
  explicit operator bool() const noexcept { return v; }
  bool operator!() const noexcept { return !(bool) *this; }
  M operator*(M r) const { return M(*this) *= r; }
  M operator/(M r) const { return M(*this) /= r; }
  M operator+(M r) const { return M(*this) += r; }
  M operator-(M r) const { return M(*this) -= r; }
  bool operator==(M r) const { return v == r.v; }
  bool operator!=(M r) const { return !(*this == r); }
  M& operator*=(M r) { v = (uint64_t) v * r.v % P; return *this; }
  M& operator/=(M r) { return *this *= r.inv(); }
  M& operator+=(M r) { if ((v += r.v) >= P) v -= P; return *this; }
  M& operator-=(M r) { if ((v += P - r.v) >= P) v -= P; return *this; }
  M inv() const {
    int a = v, b = P, x = 1, u = 0;
    while (b) {
      int q = a / b;
      swap(a -= q * b, b);
      swap(x -= q * u, u);
    }
    assert(a == 1);
    return x;
  }
  template<class Z> M pow(Z n) const {
    if (n < 0) return pow(-n).inv();
    M res = 1;
    for (M a = *this; n; a *= a, n >>= 1) if (n & 1) res *= a;
    return res;
  }
  template<class Z> friend M operator*(Z l, M r) { return M(l) *= r; }
  template<class Z> friend M operator/(Z l, M r) { return M(l) /= r; }
  template<class Z> friend M operator+(Z l, M r) { return M(l) += r; }
  template<class Z> friend M operator-(Z l, M r) { return M(l) -= r; }
  friend ostream& operator<<(ostream& os, M r) { return os << r.v; }
  friend istream& operator>>(istream& is, M& r) { lint x; is >> x; r = x; return is; }
  template<class Z> friend bool operator==(Z l, M r) { return M(l) == r; }
  template<class Z> friend bool operator!=(Z l, M r) { return !(l == r); }
};
using Mint = ModInt<(unsigned) 1e9 + 7>;

template<unsigned P, unsigned g> void ntt(V< ModInt<P> >& a, bool inv = false) {
  int n = a.size();
  int j = 0;
  for (int i = 1; i < n; ++i) {
    int k = n >> 1;
    while (j >= k) j -= k, k >>= 1;
    j += k;
    if (i < j) swap(a[i], a[j]);
  }
  assert((P - 1) % n == 0);
  auto xi = ModInt<P>(g).pow((P - 1) / n);
  if (inv) xi = xi.inv();
  for (int k = 1; k < n; k <<= 1) {
    ModInt<P> dt = xi.pow((n >> 1) / k);
    for (int i0 = 0; i0 < n; i0 += k << 1) {
      ModInt<P> t = 1;
      for (int i = i0; i < i0 + k; ++i) {
        j = i + k;
        a[j] *= t, t *= dt;
        tie(a[i], a[j]) = make_pair(a[i] + a[j], a[i] - a[j]);
      }
    }
  }
}
template<unsigned P, unsigned g = 6420> void multiply(V< ModInt<P> >& a, V< ModInt<P> >& b) {
  assert(!a.empty() and !b.empty());
  int n = 1 << __lg(2 * (a.size() + b.size() - 1) - 1);
  a.resize(n), b.resize(n);
  ntt<P, g>(a), ntt<P, g>(b);
  for (int i = 0; i < n; ++i) a[i] *= b[i];
  ntt<P, g>(a, true);
  auto inv_n = ModInt<P>(n).inv();
  for (int i = 0; i < n; ++i) a[i] *= inv_n;
}
lint tmod(lint a, lint p) { return (a %= p) < 0 ? a + p : a; }
lint mod_inv(lint a, lint p) {
  a = tmod(a, p);
  lint b = p, x = 1, u = 0;
  while (b) {
    lint q = a / b;
    swap(a -= q * b, b);
    swap(x -= q * u, u);
  }
  return a == 1 ? tmod(x, p) : -1;
}
lint CRT(const V<lint>& a, const V<lint>& p, lint mod) {
  int n = a.size();
  V<lint> y(n);
  for (int i = 0; i < n; ++i) {
    y[i] = a[i];
    lint prod = 1;
    for (int j = 0; j < i; ++j) {
      y[i] -= prod * y[j] % p[i];
      (prod *= p[j]) %= p[i];
    }
    y[i] = tmod(y[i], p[i]);
    for (int j = 0; j < i; ++j) {
      (y[i] *= mod_inv(p[j], p[i])) %= p[i];
    }
  }
  lint res = 0, prod = 1;
  for (int i = 0; i < n; ++i) {
    res += prod * y[i] % mod;
    (prod *= p[i]) %= mod;
  }
  return res % mod;
}
template<unsigned P> void mod_multiply(V< ModInt<P> >& a, const V< ModInt<P> >& b) {
  using Mint0 = ModInt<469762049>;
  using Mint1 = ModInt<1811939329>;
  using Mint2 = ModInt<2013265921>;
  int n = a.size(), m = b.size();
  V<Mint0> a0(n), b0(m);
  V<Mint1> a1(n), b1(m);
  V<Mint2> a2(n), b2(m);
  for (int i = 0; i < n; ++i) {
    a0[i] = a[i].v;
    a1[i] = a[i].v;
    a2[i] = a[i].v;
  }
  for (int j = 0; j < m; ++j) {
    b0[j] = b[j].v;
    b1[j] = b[j].v;
    b2[j] = b[j].v;
  }
  multiply(a0, b0);
  multiply(a1, b1);
  multiply(a2, b2);
  n = a0.size();
  a.resize(n);
  for (int i = 0; i < n; ++i) {
    a[i] = CRT({a0[i].v, a1[i].v, a2[i].v}, {Mint0::p(), Mint1::p(), Mint2::p()}, P);
  }
}
template<unsigned P> V< ModInt<P> > power(V< ModInt<P> > a, lint k) {
  V< ModInt<P> > res{1};
  while (k) {
    if (k & 1) {
      mod_multiply(res, a);
      while (!res.back()) res.pop_back();
    }
    mod_multiply(a, a);
    while (!a.back()) a.pop_back();
    k >>= 1;
  }
  return res;
}
template<unsigned P> V< ModInt<P> > inverse(V< ModInt<P> > a, int n) {
  a.resize(n);
  if (n == 1) return {a[0].inv()};
  auto b = inverse(a, n / 2);
  mod_multiply(a, b);
  a.resize(n);
  mod_multiply(a, b);
  for (auto&& e : b) e *= 2;
  b.resize(n);
  for (int i = 0; i < n; ++i) {
    b[i] -= a[i];
  }
  return b;
}

int main() {
  cin.tie(nullptr); ios::sync_with_stdio(false);
  int n, m, d1, d2; cin >> n >> m >> d1 >> d2;
  --n;
  if ((m -= d1 * n) <= 0) return cout << 0 << '\n', 0;
  int d = d2 - d1 + 1;
  V<Mint> a{1, -1};
  a = power(a, n);
  V<Mint> b(m);
  for (int i = 0; i <= n and i * d < m; ++i) {
    b[i * d] = a[i];
  }
  while (!b.back()) b.pop_back();
  a = inverse(a, 1 << __lg(2 * m - 1));
  while (!a.back()) a.pop_back();
  mod_multiply(a, b);
  a.resize(m);
  Mint res;
  for (int i = 0; i < m; ++i) {
    res += a[i] * (m - i);
  }
  cout << res << '\n';
}
0