結果

問題 No.2075 GCD Subsequence
ユーザー tktk_snsntktk_snsn
提出日時 2022-09-17 12:40:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,686 ms / 4,000 ms
コード長 2,470 bytes
コンパイル時間 1,090 ms
コンパイル使用メモリ 107,452 KB
実行使用メモリ 22,020 KB
最終ジャッジ日時 2024-06-01 15:05:07
合計ジャッジ時間 27,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,788 KB
testcase_01 AC 9 ms
7,772 KB
testcase_02 AC 9 ms
7,820 KB
testcase_03 AC 9 ms
7,736 KB
testcase_04 AC 9 ms
7,732 KB
testcase_05 AC 10 ms
7,796 KB
testcase_06 AC 10 ms
7,788 KB
testcase_07 AC 9 ms
7,804 KB
testcase_08 AC 607 ms
18,008 KB
testcase_09 AC 1,029 ms
22,020 KB
testcase_10 AC 640 ms
18,420 KB
testcase_11 AC 866 ms
20,500 KB
testcase_12 AC 741 ms
19,512 KB
testcase_13 AC 522 ms
17,056 KB
testcase_14 AC 854 ms
20,616 KB
testcase_15 AC 562 ms
17,596 KB
testcase_16 AC 608 ms
18,016 KB
testcase_17 AC 1,038 ms
22,020 KB
testcase_18 AC 1,686 ms
9,628 KB
testcase_19 AC 1,678 ms
9,756 KB
testcase_20 AC 1,680 ms
9,624 KB
testcase_21 AC 1,679 ms
9,496 KB
testcase_22 AC 1,650 ms
9,624 KB
testcase_23 AC 1,606 ms
9,636 KB
testcase_24 AC 1,639 ms
9,628 KB
testcase_25 AC 1,646 ms
9,628 KB
testcase_26 AC 1,654 ms
9,628 KB
testcase_27 AC 1,638 ms
9,628 KB
testcase_28 AC 653 ms
8,552 KB
testcase_29 AC 10 ms
7,804 KB
testcase_30 AC 10 ms
7,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
#include <set>
#include <stack>
#include <queue>
#include <cmath>
#include <iomanip>
#include <numeric>
#include <string>
#include <bitset>
#include <assert.h>

// #define _GLIBCXX_DEBUG
// #define _LIBCPP_DEBUG 0
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define revrep(i, n) for(int i = (int)(n -1); i >= 0; --i)
#define range(i, s, t) for (int i = (int)(s); i < (int)(t); ++i)
#define revrange(i, s, t) for(int i = (int)(t - 1); i >= (int)(s); --i)
#define srange(i, s, t, step) for(int i = (int)(s); i < (int)(t); i+=int(step))
#define popcnt(x) __builtin_popcountll(x)

using namespace std;
using ll = long long;
using pii = pair<int, int>;
using pll = pair<long long, long long>;
template<class T> inline bool chmax(T& a, T b){ if (a < b){ a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b){ if (a > b){ a = b; return true; } return false; }
inline bool inside(int x, int y, int h, int w) { return (x >= 0 && x < h && y >= 0 && y < w); }
int dx[] = {0, -1, 0, 1};
int dy[] = {-1, 0, 1, 0};

const ll mod = 998244353;


vector<int> prime_sieve(int n){
    vector<int> sieve(n+1, 0), prime;
    for (int i=2; i<n+1; i++){
        if (sieve[i]==0){
            sieve[i] = i;
            prime.emplace_back(i);
        }
        for (int p: prime){
            if (p > sieve[i] || i * p > n) break;
            sieve[i * p] = p;
        }
    }
    return sieve;
}


int main() {
    int n; 
    cin >> n;
    vector<int> a(n);
    rep(i, n) cin >> a[i];

    auto sieve = prime_sieve(1e6);
    map<int, ll> mp;
    ll ans = 0;
    for (auto x: a) {
        vector<int> v;
        while (sieve[x] != 0) {
            if (v.empty() || v[v.size()-1] != sieve[x]) v.push_back(sieve[x]);
            x /= sieve[x];
        }

        ll cnt = 1;
        int m = v.size();
        range(bit, 1, 1 << m) {
            int prod = 1;
            int num = 0;
            rep(i, m) if((bit >> i) & 1) num ^= 1, prod *= v[i];
            if (num == 1) cnt += mp[prod];
            else cnt += mod - mp[prod];
            if (cnt >= mod) cnt -= mod;
        }
        rep(bit, 1 << m) {
            int prod = 1;
            rep(i, m) if((bit >> i) & 1) prod *= v[i];
            mp[prod] += cnt;
            if (mp[prod] >= mod) mp[prod] -= mod;
        }
        ans += cnt;
        if (ans >= mod) ans -= mod;
    }
    cout << ans << endl;
    return 0;
}
0