結果

問題 No.723 2つの数の和
ユーザー gyouzasushigyouzasushi
提出日時 2020-03-30 00:04:49
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 448 ms / 2,000 ms
コード長 4,527 bytes
コンパイル時間 1,623 ms
コンパイル使用メモリ 172,084 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2023-08-30 20:06:55
合計ジャッジ時間 13,895 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 415 ms
15,292 KB
testcase_01 AC 414 ms
15,096 KB
testcase_02 AC 414 ms
15,228 KB
testcase_03 AC 434 ms
15,092 KB
testcase_04 AC 441 ms
15,292 KB
testcase_05 AC 440 ms
15,156 KB
testcase_06 AC 438 ms
15,360 KB
testcase_07 AC 430 ms
15,084 KB
testcase_08 AC 428 ms
15,324 KB
testcase_09 AC 443 ms
15,296 KB
testcase_10 AC 427 ms
14,888 KB
testcase_11 AC 424 ms
15,292 KB
testcase_12 AC 434 ms
15,160 KB
testcase_13 AC 448 ms
15,224 KB
testcase_14 AC 425 ms
15,156 KB
testcase_15 AC 440 ms
15,296 KB
testcase_16 AC 437 ms
15,128 KB
testcase_17 AC 438 ms
15,160 KB
testcase_18 AC 428 ms
15,288 KB
testcase_19 AC 437 ms
14,936 KB
testcase_20 AC 411 ms
15,128 KB
testcase_21 AC 410 ms
15,228 KB
testcase_22 AC 409 ms
15,204 KB
testcase_23 AC 440 ms
15,128 KB
testcase_24 AC 423 ms
15,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rrep(i, n) for (int i = (int)(n - 1); i >= 0; i--)
#define all(x) (x).begin(), (x).end()
#define sz(x) int(x.size())
#define get_unique(x) x.erase(unique(all(x)), x.end());
typedef long long ll;
typedef complex<double> Complex;
const int INF = 1e9;
const ll MOD = 1e18;
const ll LINF = 1e18;
template <class T>
bool chmax(T& a, const T& b) {
    if (a < b) {
        a = b;
        return 1;
    }
    return 0;
}
template <class T>
bool chmin(T& a, const T& b) {
    if (b < a) {
        a = b;
        return 1;
    }
    return 0;
}
template <class T>
vector<T> make_vec(size_t a) {
    return vector<T>(a);
}
template <class T, class... Ts>
auto make_vec(size_t a, Ts... ts) {
    return vector<decltype(make_vec<T>(ts...))>(a, make_vec<T>(ts...));
}
struct NumberTheoreticTransform {
    ll ext_gxd(ll a, ll b, ll& x, ll& y) {
        if (b == 0) {
            x = 1;
            y = 0;
            return a;
        }
        ll q = a / b;
        ll g = ext_gxd(b, a - q * b, x, y);
        ll z = x - q * y;
        x = y;
        y = z;
        return g;
    }

    ll modinv(ll a, ll m) {
        ll x, y;
        ext_gxd(a, m, x, y);
        x %= m;
        if (x < 0) x += m;
        return x;
    }

    ll modpow(ll a, ll n, ll m) {
        ll ret = 1;
        ll now = a;
        while (n > 0) {
            if (n % 2 == 1) ret = ret * now % m;
            now = now * now % m;
            n /= 2;
        }
        return ret;
    }

    void ntt(vector<ll>& a, ll mod, bool inv = 0) {
        const int n = sz(a);
        assert((n & (n - 1)) == 0);

        const ll g = 3;
        ll h = modpow(g, (mod - 1) / n, mod);
        if (inv) h = modinv(h, mod);

        int i = 0;
        for (int j = 1; j < n - 1; j++) {
            for (int k = n >> 1; k > (i ^= k); k >>= 1) {
            };
            if (j < i) swap(a[i], a[j]);
        }

        for (int m = 1; m < n; m *= 2) {
            const int m2 = m * 2;
            const ll base = modpow(h, n / m2, mod);
            ll w = 1;
            for (int x = 0; x < m; x++) {
                for (int s = x; s < n; s += m2) {
                    ll u = a[s];
                    ll d = a[s + m] * w % mod;
                    a[s] = u + d;
                    if (a[s] >= mod) a[s] -= mod;
                    a[s + m] = u - d;
                    if (a[s + m] < 0) a[s + m] += mod;
                }
                w = w * base % mod;
            }
        }

        for (auto& x : a) {
            if (x < 0) x += mod;
        }

        if (inv) {
            const int n_inv = modinv(n, mod);
            for (auto& x : a) x = x * n_inv % mod;
        }
    }

    vector<ll> convolution(const vector<ll>& a, vector<ll>& b, ll mod) {
        int ntt_size = 1;
        while (ntt_size < sz(a) + sz(b)) ntt_size <<= 1;

        vector<ll> _a = a, _b = b;
        _a.resize(ntt_size);
        _b.resize(ntt_size);

        ntt(_a, mod);
        ntt(_b, mod);

        for (int i = 0; i < ntt_size; i++) {
            _a[i] *= _b[i];
            _a[i] %= mod;
        }

        ntt(_a, mod, 1);
        return _a;
    }

    vector<ll> modconv(vector<ll> a, vector<ll> b, ll mod = MOD) {
        for (auto& x : a) x %= mod;
        for (auto& x : b) x %= mod;

        auto x = convolution(a, b, 167772161);
        auto y = convolution(a, b, 469762049);
        auto z = convolution(a, b, 1224736769);

        const ll mod1 = 167772161, mod2 = 469762049, mod3 = 1224736769;
        const ll mod1_inv_mod2 = modinv(mod1, mod2);
        const ll mod1mod2_inv_mod3 = modinv(mod1 * mod2, mod3);
        const ll mod1mod2_mod = mod1 * mod2 % mod;
        vector<ll> ret(sz(x));
        for (int i = 0; i < sz(x); i++) {
            ll v1 = (y[i] - x[i]) * mod1_inv_mod2 % mod2;
            if (v1 < 0) v1 += mod2;
            ll v2 =
                (z[i] - (x[i] + mod1 * v1) % mod3) * mod1mod2_inv_mod3 % mod3;
            if (v2 < 0) v2 += mod3;
            ll constants3 = (x[i] + mod1 * v1 + mod1mod2_mod * v2) % mod;
            if (constants3 < 0) constants3 += mod;
            ret[i] = constants3;
        }
        return ret;
    }
};
int main() {
    int n, x;
    cin >> n >> x;
    vector<ll> v(100100);
    rep(i, n) {
        int a;
        cin >> a;
        v[a]++;
    }
    NumberTheoreticTransform ntt;
    auto c = ntt.modconv(v, v);
    if (x >= sz(c))
        cout << 0 << endl;
    else
        cout << c[x] << endl;
}
0