結果

問題 No.1036 Make One With GCD 2
ユーザー lorent_kyopro
提出日時 2020-12-25 17:14:52
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 1,813 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 203,028 KB
最終ジャッジ日時 2025-01-17 07:17:35
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

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

long long binary_gcd(long long a, long long b) {
    if (a == 0) return b;
    if (b == 0) return a;
    const int n = __builtin_ctzll(a | b);
    a >>= __builtin_ctzll(a);
    while (b > 0) {
        b >>= __builtin_ctzll(b);
        if (a > b) swap(a, b);
        b -= a;
    }
    return a << n;
}

template<class S, S (*op)(S, S), S (*e)()> struct swag {
    std::stack<std::pair<S, S>> front_stack, back_stack;
    swag() {
        front_stack.emplace(e(), e());
        back_stack.emplace(e(), e());
    }
    bool empty() const { return front_stack.size() == 1 && back_stack.size() == 1; }
    size_t size() const { return front_stack.size() + back_stack.size() - 2; }
    S fold() const { return op(front_stack.top().second, back_stack.top().second); }
    void push(const S& x) { back_stack.emplace(x, op(back_stack.top().second, x)); }
    void pop() {
        assert(front_stack.size() > 1 || back_stack.size() > 1);
        if (front_stack.size() > 1) {
            front_stack.pop();
        } else {
            while (back_stack.size() > 2) {
                front_stack.emplace(back_stack.top().first, op(front_stack.top().second, back_stack.top().first));
                back_stack.pop();
            }
            back_stack.pop();
        }
    }
};

long long e() { return 0; }

int main() {
    int n;
    cin >> n;
    vector<long long> a(n);
    for (auto& ai : a) cin >> ai;
    a.push_back(1);
    swag<long long, binary_gcd, e> q;
    long long ans = 0;
    q.push(a.front());
    for (int l = 0, r = 0; l < n; ++l) {
        while (q.fold() != 1) q.push(a[++r]);
        ans += n - r;
        q.pop();
    }
    cout << ans << '\n';
}
0