結果

問題 No.1036 Make One With GCD 2
ユーザー merom686merom686
提出日時 2020-04-25 17:03:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 796 ms / 2,000 ms
コード長 1,751 bytes
コンパイル時間 888 ms
コンパイル使用メモリ 89,916 KB
実行使用メモリ 11,384 KB
最終ジャッジ日時 2024-09-16 13:46:38
合計ジャッジ時間 13,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 367 ms
11,120 KB
testcase_01 AC 81 ms
11,080 KB
testcase_02 AC 103 ms
11,080 KB
testcase_03 AC 16 ms
6,940 KB
testcase_04 AC 26 ms
9,748 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 32 ms
6,948 KB
testcase_08 AC 26 ms
6,940 KB
testcase_09 AC 237 ms
10,992 KB
testcase_10 AC 222 ms
10,692 KB
testcase_11 AC 244 ms
11,176 KB
testcase_12 AC 230 ms
10,756 KB
testcase_13 AC 428 ms
11,040 KB
testcase_14 AC 429 ms
11,160 KB
testcase_15 AC 405 ms
10,824 KB
testcase_16 AC 408 ms
10,768 KB
testcase_17 AC 420 ms
11,040 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 397 ms
10,796 KB
testcase_23 AC 292 ms
9,840 KB
testcase_24 AC 414 ms
10,800 KB
testcase_25 AC 378 ms
10,448 KB
testcase_26 AC 385 ms
10,596 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 100 ms
11,384 KB
testcase_39 AC 796 ms
11,292 KB
testcase_40 AC 291 ms
9,944 KB
testcase_41 AC 504 ms
11,188 KB
testcase_42 AC 497 ms
11,220 KB
testcase_43 AC 423 ms
11,144 KB
testcase_44 AC 479 ms
11,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstring>
#include <cstdlib>
#include <cmath>
using namespace std;
using ll = long long;

ll gcd(ll n, ll m) {
    if (n < m) swap(n, m);
    while (m != 0) {
        ll r = n % m;
        n = m;
        m = r;
    }
    return n;
}

template <class T>
struct SegmentTree {
    SegmentTree(int n) : n(n) {
        for (m = 2; m < n; m *= 2);
        t = vector<T>(m + n + n % 2);
    }
    T &operator[](int i) {
        return t[m + i];
    }
    const T &root() const {
        return t[1];
    }
    void build() {
        for (int i = (n - 1 + m) / 2; i > 0; i--) t[i] = t[i * 2] * t[i * 2 + 1];
    }
    void update(int i, const T &o) {
        for (t[i += m] = o; i /= 2, i > 0;) t[i] = t[i * 2] * t[i * 2 + 1];
    }
    T query(int l, int r) {
        T o0, o1;
        for (l += m, r += m; l < r; l /= 2, r /= 2) {
            if (l & 1) o0 = o0 * t[l++];
            if (r & 1) o1 = t[--r] * o1;
        }
        return o0 * o1;
    }
    vector<T> t;
    int n, m;
};

struct Node {
    constexpr Node() : v(0) {}
    Node(ll v) : v(v) {}
    Node operator*(const Node &o) const {
        return gcd(v, o.v);
    }
    ll v;
};

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int n;
    cin >> n;

    SegmentTree<Node> st(n);
    for (int i = 0; i < n; i++) {
        cin >> st[i].v;
    }
    st.build();

    ll r = 0;
    for (int i0 = 0, i1 = 0; i0 < n; i0++) {
        if (i1 <= n) {
            Node t = st.query(i0, i1).v;
            while (t.v != 1) {
                if (++i1 > n) break;
                t = t * st[i1 - 1].v;
            }
        }
        r += n - i1 + 1;
    }

    cout << r << endl;

    return 0;
}
0