結果

問題 No.1036 Make One With GCD 2
ユーザー lorent_kyoprolorent_kyopro
提出日時 2020-12-25 14:22:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,974 ms / 2,000 ms
コード長 4,153 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 201,224 KB
実行使用メモリ 15,296 KB
最終ジャッジ日時 2023-10-14 20:42:35
合計ジャッジ時間 25,075 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,974 ms
15,136 KB
testcase_01 AC 158 ms
15,200 KB
testcase_02 AC 482 ms
15,224 KB
testcase_03 AC 18 ms
8,472 KB
testcase_04 AC 27 ms
13,892 KB
testcase_05 AC 2 ms
4,352 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 79 ms
8,744 KB
testcase_08 AC 60 ms
8,540 KB
testcase_09 AC 370 ms
15,296 KB
testcase_10 AC 352 ms
14,944 KB
testcase_11 AC 368 ms
15,200 KB
testcase_12 AC 344 ms
14,924 KB
testcase_13 AC 652 ms
14,960 KB
testcase_14 AC 666 ms
14,872 KB
testcase_15 AC 608 ms
14,668 KB
testcase_16 AC 620 ms
15,020 KB
testcase_17 AC 650 ms
15,032 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 2 ms
4,352 KB
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 2 ms
4,352 KB
testcase_22 AC 595 ms
14,672 KB
testcase_23 AC 438 ms
13,960 KB
testcase_24 AC 639 ms
15,212 KB
testcase_25 AC 568 ms
14,688 KB
testcase_26 AC 585 ms
14,668 KB
testcase_27 AC 2 ms
4,352 KB
testcase_28 AC 1 ms
4,348 KB
testcase_29 AC 1 ms
4,348 KB
testcase_30 AC 2 ms
4,348 KB
testcase_31 AC 1 ms
4,352 KB
testcase_32 AC 1 ms
4,348 KB
testcase_33 AC 2 ms
4,348 KB
testcase_34 AC 2 ms
4,348 KB
testcase_35 AC 1 ms
4,352 KB
testcase_36 AC 2 ms
4,352 KB
testcase_37 AC 2 ms
4,352 KB
testcase_38 AC 1,203 ms
15,188 KB
testcase_39 AC 1,345 ms
15,244 KB
testcase_40 AC 444 ms
14,148 KB
testcase_41 AC 1,079 ms
15,240 KB
testcase_42 AC 1,011 ms
15,252 KB
testcase_43 AC 1,150 ms
15,132 KB
testcase_44 AC 1,242 ms
15,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <algorithm>

#ifdef _MSC_VER
#include <intrin.h>
#endif

namespace atcoder {

namespace internal {

int ceil_pow2(int n) {
    int x = 0;
    while ((1U << x) < (unsigned int)(n)) x++;
    return x;
}

int bsf(unsigned int n) {
#ifdef _MSC_VER
    unsigned long index;
    _BitScanForward(&index, n);
    return index;
#else
    return __builtin_ctz(n);
#endif
}

}  // namespace internal

}  // namespace atcoder

#include <cassert>
#include <vector>

namespace atcoder {

template <class S, S (*op)(S, S), S (*e)()> struct segtree {
  public:
    segtree() : segtree(0) {}
    segtree(int n) : segtree(std::vector<S>(n, e())) {}
    segtree(const std::vector<S>& v) : _n(int(v.size())) {
        log = internal::ceil_pow2(_n);
        size = 1 << log;
        d = std::vector<S>(2 * size, e());
        for (int i = 0; i < _n; i++) d[size + i] = v[i];
        for (int i = size - 1; i >= 1; i--) {
            update(i);
        }
    }

    void set(int p, S x) {
        assert(0 <= p && p < _n);
        p += size;
        d[p] = x;
        for (int i = 1; i <= log; i++) update(p >> i);
    }

    S get(int p) {
        assert(0 <= p && p < _n);
        return d[p + size];
    }

    S prod(int l, int r) {
        assert(0 <= l && l <= r && r <= _n);
        S sml = e(), smr = e();
        l += size;
        r += size;

        while (l < r) {
            if (l & 1) sml = op(sml, d[l++]);
            if (r & 1) smr = op(d[--r], smr);
            l >>= 1;
            r >>= 1;
        }
        return op(sml, smr);
    }

    S all_prod() { return d[1]; }

    template <bool (*f)(S)> int max_right(int l) {
        return max_right(l, [](S x) { return f(x); });
    }
    template <class F> int max_right(int l, F f) {
        assert(0 <= l && l <= _n);
        assert(f(e()));
        if (l == _n) return _n;
        l += size;
        S sm = e();
        do {
            while (l % 2 == 0) l >>= 1;
            if (!f(op(sm, d[l]))) {
                while (l < size) {
                    l = (2 * l);
                    if (f(op(sm, d[l]))) {
                        sm = op(sm, d[l]);
                        l++;
                    }
                }
                return l - size;
            }
            sm = op(sm, d[l]);
            l++;
        } while ((l & -l) != l);
        return _n;
    }

    template <bool (*f)(S)> int min_left(int r) {
        return min_left(r, [](S x) { return f(x); });
    }
    template <class F> int min_left(int r, F f) {
        assert(0 <= r && r <= _n);
        assert(f(e()));
        if (r == 0) return 0;
        r += size;
        S sm = e();
        do {
            r--;
            while (r > 1 && (r % 2)) r >>= 1;
            if (!f(op(d[r], sm))) {
                while (r < size) {
                    r = (2 * r + 1);
                    if (f(op(d[r], sm))) {
                        sm = op(d[r], sm);
                        r--;
                    }
                }
                return r + 1 - size;
            }
            sm = op(d[r], sm);
        } while ((r & -r) != r);
        return 0;
    }

  private:
    int _n, size, log;
    std::vector<S> d;

    void update(int k) { d[k] = op(d[2 * k], d[2 * k + 1]); }
};

}  // namespace atcoder

using namespace std;
using namespace atcoder;

__attribute__((constructor))
void fast_io() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
}

long long binary_gcd(long long a, long long b) {
    if (b == 0) return a;
    if (a < b) return binary_gcd(b, a);
    if (a % 2 == 1) {
        if (b % 2 == 1) return binary_gcd((a - b) / 2, b);
        else return binary_gcd(a, b / 2);
    } else {
        if (b % 2 == 1) return binary_gcd(a / 2, b);
        else return 2 * binary_gcd(a / 2, b / 2);
    }
}

using S = long long;
S op(S a, S b) { return binary_gcd(a, b); }
S e() { return 0; }
bool f(S x) { return x != 1; }

int main() {
    int n;
    cin >> n;
    vector<long long> a(n);
    for (auto& ai : a) cin >> ai;
    segtree<S, op, e> seg(a);
    long long ans = 0;
    for (int l = 0; l < n; ++l) ans += n - seg.max_right<f>(l);
    cout << ans << '\n';
}
0