結果

問題 No.1036 Make One With GCD 2
ユーザー hitonanodehitonanode
提出日時 2020-04-25 21:55:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 1,684 bytes
コンパイル時間 2,293 ms
コンパイル使用メモリ 211,168 KB
実行使用メモリ 87,292 KB
最終ジャッジ日時 2024-09-16 13:59:25
合計ジャッジ時間 11,350 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
87,260 KB
testcase_01 AC 184 ms
87,148 KB
testcase_02 AC 167 ms
87,192 KB
testcase_03 AC 45 ms
32,896 KB
testcase_04 AC 76 ms
57,772 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 79 ms
37,248 KB
testcase_08 AC 66 ms
30,976 KB
testcase_09 AC 200 ms
85,340 KB
testcase_10 AC 188 ms
79,472 KB
testcase_11 AC 206 ms
86,924 KB
testcase_12 AC 191 ms
80,328 KB
testcase_13 AC 279 ms
83,284 KB
testcase_14 AC 284 ms
84,076 KB
testcase_15 AC 267 ms
78,908 KB
testcase_16 AC 268 ms
79,572 KB
testcase_17 AC 275 ms
82,044 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 260 ms
78,084 KB
testcase_23 AC 198 ms
58,256 KB
testcase_24 AC 271 ms
81,188 KB
testcase_25 AC 250 ms
74,232 KB
testcase_26 AC 259 ms
76,796 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 163 ms
87,152 KB
testcase_39 AC 252 ms
87,152 KB
testcase_40 AC 199 ms
58,160 KB
testcase_41 AC 235 ms
87,236 KB
testcase_42 AC 234 ms
87,292 KB
testcase_43 AC 224 ms
87,280 KB
testcase_44 AC 227 ms
87,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long int;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;

// Static sequence sparse table
// Complexity: O(NlogN) for precalculation, O(1) per query
template<typename T, typename F>
struct SparseTable {
    int N, lgN;
    T defaultT;
    F func;
    std::vector<std::vector<T>> data;
    std::vector<int> lgx_table;
    SparseTable(F func) : func(func) {}
    SparseTable(const std::vector<T> &sequence, T defaultT, F func) : N(sequence.size()), defaultT(defaultT), func(func)
    {
        lgx_table.resize(N + 1);
        for (int i = 2; i < N + 1; i++) lgx_table[i] = lgx_table[i >> 1] + 1;
        lgN = lgx_table[N] + 1;
        data.assign(lgN, std::vector<T>(N, defaultT));
        data[0] = sequence;
        for (int d = 1; d < lgN; d++) {
            for (int i = 0; i + (1 << d) <= N; i++) {
                data[d][i] = func(data[d - 1][i], data[d - 1][i + (1 << (d - 1))]);
            }
        }
    }
    T get(int l, int r) { // [l, r), 0-indexed
        assert(l >= 0 and r <= N);
        if (l >= r) return defaultT;
        int d = lgx_table[r - l];
        return func(data[d][l], data[d][r - (1 << d)]);
    }
};

int main()
{
    int N;
    cin >> N;
    vector<lint> A(N);
    for (auto &a : A) cin >> a;
    auto f = [](lint l, lint r) -> lint { return gcd(l, r); };
    SparseTable<lint, decltype(f)> st(A, 0, f);
    lint ret = 0;
    int r = 1;
    for (int l = 0; l < N; l++)
    {
        if (l == r) r++;
        while (r <= N and st.get(l, r) > 1) r++;
        ret += N - r + 1;
    }
    cout << ret << '\n';
}
0