結果

問題 No.1731 Product of Subsequence
ユーザー vjudge1vjudge1
提出日時 2024-11-21 09:35:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 1,151 bytes
コンパイル時間 4,201 ms
コンパイル使用メモリ 237,916 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-21 09:35:38
合計ジャッジ時間 7,470 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 199 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 13 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 207 ms
6,816 KB
testcase_11 AC 156 ms
6,820 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 11 ms
6,816 KB
testcase_14 AC 139 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 352 ms
6,816 KB
testcase_19 AC 12 ms
6,820 KB
testcase_20 AC 231 ms
6,816 KB
testcase_21 AC 207 ms
6,816 KB
testcase_22 AC 179 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 5 ms
6,820 KB
testcase_25 AC 4 ms
6,816 KB
testcase_26 AC 32 ms
6,816 KB
testcase_27 AC 42 ms
6,816 KB
testcase_28 AC 84 ms
6,820 KB
testcase_29 AC 29 ms
6,816 KB
testcase_30 AC 195 ms
6,820 KB
testcase_31 AC 178 ms
6,816 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 34 ms
6,816 KB
testcase_34 AC 21 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/extc++.h>

using i64 = long long;

constexpr int P = 1E9 + 7;

inline void Inc(int &x, int y) {
    if ((x += y) >= P) x -= P;
}

int main() {
    std::cin.tie(nullptr) -> sync_with_stdio(false);
    int n;
    i64 m;
    std::cin >> n >> m;
    
    std::vector<i64> a(n);
    for (int i = 0; i < n; i++) {
        std::cin >> a[i];
        a[i] = std::__gcd(a[i], m);
    }
    
    auto lcm = [&](int x, int y) {
        return 1ll * x * y / std::__gcd(x, y);
    };

    int cnt = 0;
    __gnu_pbds::gp_hash_table<i64, int> mp;
    std::vector<i64> d;
    for (int i = 1; i * i <= m; i++) {
        if (m % i == 0) {
            d.push_back(i);
            if (i != m / i) d.push_back(m / i);
        }
    }
    std::sort(d.begin(), d.end());
    for (auto x : d) {
        mp[x] = cnt++;
    }

    std::vector<int> f(cnt);
    f[0] = 1;
    for (int i = 0; i < n; i++) {
        std::vector<int> nf(cnt);
        for (auto x : d) {
            Inc(nf[mp[std::__gcd(1ll * m, 1ll * x * a[i])]], f[mp[x]]);
            Inc(nf[mp[x]], f[mp[x]]);
        }
        f = nf;
    }
    std::cout << f[cnt - 1] - (m == 1);
    return 0;
}
0