結果

問題 No.1036 Make One With GCD 2
ユーザー rodea
提出日時 2020-04-28 19:06:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,059 ms / 2,000 ms
コード長 2,394 bytes
コンパイル時間 1,632 ms
コンパイル使用メモリ 124,356 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-09-16 14:16:17
合計ジャッジ時間 19,628 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <string>
#include <cstring>
#include <deque>
#include <list>
#include <queue>
#include <stack>
#include <vector>
#include <utility>
#include <algorithm>
#include <map>
#include <set>
#include <complex>
#include <cmath>
#include <limits>
#include <cfloat>
#include <climits>
#include <ctime>
#include <cassert>
#include <numeric>
#include <fstream>
#include <functional>
#include <bitset>
using namespace std;

using ll = long long;
using P = pair<int, int>;
using T = tuple<int, int, int>;

template <class T> inline T chmax(T &a, const T b) {return a = (a < b) ? b : a;}
template <class T> inline T chmin(T &a, const T b) {return a = (a > b) ? b : a;}

constexpr int MOD = 1e9 + 7;
constexpr int inf = 1e9;
constexpr long long INF = 1e18;

#define all(a) (a).begin(), (a).end()

int dx[] = {1, 0, -1, 0};
int dy[] = {0, 1, 0, -1};

template<typename T>
struct SegmentTree{
private:
    using Func = function<T(T, T)>;
    int n;
    vector<T> node;
    Func func;
    T init_v;

public:
    SegmentTree(vector<T> v, Func _func, T _init_v){
        func = _func, init_v = _init_v;
        int sz = v.size();
        n = 1;
        while(n < sz) n *= 2;
        node.resize(2 * n, init_v);
        for(int i=0; i<sz; i++) node[i+n-1] = v[i];
        for(int i=n-2; i>=0; i--) node[i] = func(node[i*2+1], node[i*2+2]);
    }

    void update(int idx, T val){
        idx += n - 1;
        node[idx] = val;
        while(idx > 0){
            idx = (idx - 1) / 2;
            node[idx] = func(node[idx*2+1], node[idx*2+2]);
        }
    }

    T query(int a, int b, int k = 0, int l = 0, int r = -1){
        if (r < 0) r = n;
        if (r <= a || b <= l) return init_v;
        if (a <= l && r <= b) return node[k];
        T lv = query(a, b, k * 2 + 1, l, (l + r) / 2);
        T rv = query(a, b, k * 2 + 2, (l + r) / 2, r);
        return func(lv, rv);
    }
};

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

    int n; cin>>n;
    vector<ll> a(n);
    for(int i=0; i<n; i++) cin>>a[i];

    SegmentTree<ll> seg(a, [](const auto x, const auto y){return __gcd(x, y);}, 0);

    ll ans = 0;
    int r = 0;
    for(int l=0; l<n; l++){
        if(r < l) r = l;
        while(r < n && seg.query(l, r + 1) != 1) r++;
        ans += (n - r);
    }

    cout << ans << endl;

    return 0;
}
0