結果

問題 No.2313 Product of Subsequence (hard)
ユーザー t98slidert98slider
提出日時 2023-05-25 01:40:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,307 ms / 4,000 ms
コード長 1,277 bytes
コンパイル時間 4,132 ms
コンパイル使用メモリ 234,292 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 10:03:31
合計ジャッジ時間 14,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 132 ms
5,376 KB
testcase_09 AC 73 ms
5,376 KB
testcase_10 AC 142 ms
5,376 KB
testcase_11 AC 54 ms
5,376 KB
testcase_12 AC 155 ms
5,376 KB
testcase_13 AC 870 ms
5,376 KB
testcase_14 AC 828 ms
5,376 KB
testcase_15 AC 841 ms
5,376 KB
testcase_16 AC 847 ms
5,376 KB
testcase_17 AC 790 ms
5,376 KB
testcase_18 AC 790 ms
5,376 KB
testcase_19 AC 812 ms
5,376 KB
testcase_20 AC 809 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1,307 ms
5,376 KB
testcase_28 AC 118 ms
5,376 KB
testcase_29 AC 150 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
using mint = atcoder::modint998244353;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, k;
    cin >> n >> k;
    if(k == 1){
        cout << mint(2).pow(n).val() - 1 << '\n';
        return 0;
    }
    vector<int> divs;
    for(int i = 1; i * i <= k; i++){
        if(k % i == 0){
            divs.emplace_back(i);
            divs.emplace_back(k / i);
        }
    }
    sort(divs.begin(), divs.end());
    divs.erase(unique(divs.begin(), divs.end()), divs.end());
    auto f = [&](int r, int v){
        return lower_bound(divs.begin(), divs.begin() + r, v) - divs.begin();
    };
    int m = divs.size();
    vector<mint> dp(m);
    vector<int> pre(m), a(n);
    for(int i = 0; i < n; i++){
        ll v;
        cin >> v;
        a[i] = __gcd((ll)k, v);
    }
    sort(a.begin(), a.end());
    dp.back() = 1;
    for(int i = 0; i < n; i++){
        if(i >= 1 && a[i - 1] == a[i]){
            for(int j = 0; j < m; j++) dp[pre[j]] += dp[j];
            continue;
        }
        for(int j = 0; j < m; j++){
            pre[j] = f(j + 1, divs[j] / __gcd(divs[j], a[i]));
            dp[pre[j]] += dp[j];
        }
    }
    cout << dp[0].val() << '\n';
}
0