結果

問題 No.1036 Make One With GCD 2
ユーザー kappybarkappybar
提出日時 2020-04-25 17:03:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,074 ms / 2,000 ms
コード長 1,686 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 173,404 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-09-16 13:47:04
合計ジャッジ時間 22,058 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 707 ms
19,200 KB
testcase_01 AC 337 ms
19,200 KB
testcase_02 AC 551 ms
19,200 KB
testcase_03 AC 73 ms
10,240 KB
testcase_04 AC 131 ms
16,512 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 135 ms
10,624 KB
testcase_08 AC 109 ms
9,984 KB
testcase_09 AC 499 ms
19,072 KB
testcase_10 AC 458 ms
18,688 KB
testcase_11 AC 506 ms
19,200 KB
testcase_12 AC 476 ms
18,560 KB
testcase_13 AC 793 ms
18,816 KB
testcase_14 AC 773 ms
18,944 KB
testcase_15 AC 721 ms
18,432 KB
testcase_16 AC 725 ms
18,688 KB
testcase_17 AC 756 ms
18,688 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 719 ms
18,432 KB
testcase_23 AC 520 ms
16,512 KB
testcase_24 AC 765 ms
18,688 KB
testcase_25 AC 691 ms
18,048 KB
testcase_26 AC 715 ms
18,304 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 548 ms
19,328 KB
testcase_39 AC 1,074 ms
19,200 KB
testcase_40 AC 539 ms
16,512 KB
testcase_41 AC 812 ms
19,200 KB
testcase_42 AC 819 ms
19,200 KB
testcase_43 AC 827 ms
19,200 KB
testcase_44 AC 839 ms
19,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
using ll =  long long ;
using P = pair<int,int> ;
const int INF = 1e9;
const int MOD = 1000000007;

ll gcd(ll i,ll j){
        if(j == 0) return i;
        return gcd(j,i%j);
}

struct SegmentTree{
        private:
        ll n;
        vector<ll> node;
        
        public:
        SegmentTree(vector<ll> v){
                ll sz = v.size();
                n = 1;
                while(n < sz) n *= 2;
                node.resize(2*n-1,0);
                for(ll i=0;i<sz;i++) node[i+n-1] = v[i];
                for(ll i=n-2;i>=0;i--) node[i] = gcd(node[2*i+1],node[2*i+2]);
        }
        
        void update(ll x,ll val){
                x += n-1;
                node[x] = val;
                while(x > 0){
                        x = (x-1)/2;
                        node[x] = gcd(node[2*x+1],node[2*x+2]);
                }
        }
        
        ll getgcd(ll a,ll b,ll k=0,ll l=0,ll r=-1){
                if(r < 0) r = n;
                if(r <= a || b <= l) return 0;
                if(a <= l && r <= b) return node[k];
                ll vl = getgcd(a,b,2*k+1,l,(l+r)/2);
                ll vr = getgcd(a,b,2*k+2,(l+r)/2,r);
                return gcd(vl,vr);
        }
};

int main(){
    int n;
    cin >> n;
    vector<ll> a(n);
    rep(i,n) cin >> a[i];
    SegmentTree seg(a);
    ll ans = 0;
    int j = 0;
    ll res = 0;
    rep(i,n){
        while(j < n && gcd(res,a[j]) != 1){
            res = gcd(res,a[j]);
            ++j;
        }
        ans += n - j;
        if(i == j) ++j;
        res = seg.getgcd(i+1,j+1);
    }
    cout << ans << endl;
    return 0;
}
0