結果

問題 No.1036 Make One With GCD 2
ユーザー sugarrrsugarrr
提出日時 2020-04-25 22:21:27
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 998 ms / 2,000 ms
コード長 3,265 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 165,248 KB
実行使用メモリ 15,352 KB
最終ジャッジ日時 2024-09-16 14:01:53
合計ジャッジ時間 18,655 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 625 ms
15,280 KB
testcase_01 AC 288 ms
15,260 KB
testcase_02 AC 259 ms
15,180 KB
testcase_03 AC 51 ms
8,604 KB
testcase_04 AC 93 ms
13,784 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 94 ms
8,848 KB
testcase_08 AC 77 ms
8,604 KB
testcase_09 AC 376 ms
15,160 KB
testcase_10 AC 355 ms
14,884 KB
testcase_11 AC 390 ms
15,352 KB
testcase_12 AC 360 ms
15,032 KB
testcase_13 AC 534 ms
15,120 KB
testcase_14 AC 545 ms
15,160 KB
testcase_15 AC 518 ms
14,772 KB
testcase_16 AC 515 ms
14,968 KB
testcase_17 AC 534 ms
14,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 506 ms
14,784 KB
testcase_23 AC 373 ms
13,824 KB
testcase_24 AC 527 ms
15,060 KB
testcase_25 AC 477 ms
14,612 KB
testcase_26 AC 497 ms
14,828 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 433 ms
15,296 KB
testcase_39 AC 998 ms
15,180 KB
testcase_40 AC 376 ms
13,824 KB
testcase_41 AC 793 ms
15,276 KB
testcase_42 AC 768 ms
15,196 KB
testcase_43 AC 788 ms
15,180 KB
testcase_44 AC 836 ms
15,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <bits/stdc++.h>
#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
//#include "boost/multiprecision/cpp_int.hpp"
//typedef boost::multiprecision::cpp_int LL;
typedef long double dd;
#define i_7 (ll)(1E9+7)
//#define i_7 998244353
#define i_5 i_7-2

ll mod(ll a){
    ll c=a%i_7;
    if(c>=0)return c;
    return c+i_7;
}
typedef pair<ll,ll> l_l;
typedef pair<dd,dd> d_d;
ll inf=(ll)1E16;
#define rep(i,l,r) for(ll i=l;i<=r;i++)
#define pb push_back
ll max(ll a,ll b){if(a<b)return b;else return a;}
ll min(ll a,ll b){if(a>b)return b;else return a;}
void Max(ll &pos,ll val){pos=max(pos,val);}//Max(dp[n],dp[n-1]);
void Min(ll &pos,ll val){pos=min(pos,val);}
void Add(ll &pos,ll val){pos=mod(pos+val);}
dd EPS=1E-9;
#define fastio ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define fi first
#define se second
#define endl "\n"
#define SORT(v) sort(v.begin(),v.end())
#define ERASE(v) v.erase(unique(v.begin(),v.end()),v.end())
#define POSL(v,x) (lower_bound(v.begin(),v.end(),x)-v.begin())
#define POSU(v,x) (upper_bound(v.begin(),v.end(),x)-v.begin())
template<class T>
inline bool chmax(T &a, T b) {
    if(a < b) {
        a = b;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T &a, T b) {
    if(a > b) {
        a = b;
        return true;
    }
    return false;
}

//////////////////////////


template<typename T, typename Func_mv>
struct Segtree {
    ll n, n_org;
    vector<T> dat;
    Func_mv merge_values;  //dataとdataの演算
    T te; //dataの単位元かつ初期値
 
    Segtree(){}
    Segtree(ll n_org,
                Func_mv merge_values,
                T te):
                n_org(n_org),
                merge_values(merge_values),
                te(te){
        n = 1;
        while(n < n_org) n <<= 1;
        dat.resize(2*n-1, te);
    }
 
    void build(vector<T>& A){
        for(ll k=0; k<ll(A.size()); k++) dat[k+n-1] = A[k];
        for(ll k=n-2; k>=0; k--) dat[k] = merge_values(dat[2*k+1], dat[2*k+2]);
    }
    
    T get(ll a, ll b){ //[a,b]から(最小値とか和とかを)get
        return query(a, b+1, 0, 0, n);
    }
    
private:
    T query(ll a, ll b, ll k, ll lb, ll rb){
        if(rb<=a || b<=lb) return te;
        if(a<=lb && rb<=b) return dat[k];
        ll mb = (lb+rb)>>1;
        T vl = query(a, b, 2*k+1, lb, mb);
        T vr = query(a, b, 2*k+2, mb, rb);
        return merge_values(vl, vr);
    }
};
ll gcd(ll a,ll b){
    if(a>b)swap(a,b);
    if(a==0)return b;
    return gcd(b%a,a);
}
auto make_segtree = [](ll N){
    //点更新と区間和
    using T=ll;
    auto merge_values=[](T&a,T&b){return gcd(a,b);};
    T te=0;
    return Segtree<T, decltype(merge_values)>
        (N, merge_values, te);
};
/*
auto st = make_segtree(n);
vector<ll> init(n);
st.build(init);
 */



int main(){fastio
    ll n;cin>>n;
    auto st = make_segtree(n);
    vector<ll> init(n);
    rep(i,0,n-1)cin>>init[i];
    st.build(init);
    ll ans=0;
    ll ng=-1;
    rep(i,0,n-1){
        chmax(ng,i-1);
        while(ng<=n-2){
            if(st.get(i,ng+1)==1){
                break;
            }else{
                ng++;
            }
        }
        ll ok=ng+1;
        ans+=n-ok;
    }
    cout<<ans<<endl;
    
    return 0;
}
0