結果

問題 No.1036 Make One With GCD 2
ユーザー NrKmDevNrKmDev
提出日時 2020-04-25 11:03:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 944 ms / 2,000 ms
コード長 2,042 bytes
コンパイル時間 2,748 ms
コンパイル使用メモリ 223,140 KB
実行使用メモリ 19,264 KB
最終ジャッジ日時 2024-09-16 13:40:04
合計ジャッジ時間 18,477 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 523 ms
19,072 KB
testcase_01 AC 208 ms
19,064 KB
testcase_02 AC 380 ms
19,072 KB
testcase_03 AC 79 ms
10,240 KB
testcase_04 AC 140 ms
16,484 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 91 ms
10,624 KB
testcase_08 AC 75 ms
10,064 KB
testcase_09 AC 336 ms
19,200 KB
testcase_10 AC 315 ms
18,536 KB
testcase_11 AC 343 ms
19,200 KB
testcase_12 AC 318 ms
18,560 KB
testcase_13 AC 480 ms
18,944 KB
testcase_14 AC 484 ms
18,912 KB
testcase_15 AC 452 ms
18,424 KB
testcase_16 AC 458 ms
18,564 KB
testcase_17 AC 469 ms
18,688 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 445 ms
18,336 KB
testcase_23 AC 330 ms
16,576 KB
testcase_24 AC 464 ms
18,628 KB
testcase_25 AC 423 ms
17,996 KB
testcase_26 AC 439 ms
18,184 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 621 ms
19,068 KB
testcase_39 AC 944 ms
19,136 KB
testcase_40 AC 331 ms
16,524 KB
testcase_41 AC 734 ms
19,096 KB
testcase_42 AC 715 ms
19,252 KB
testcase_43 AC 726 ms
19,264 KB
testcase_44 AC 761 ms
19,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int,int> P;
typedef pair<ll,ll> l_l;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<ll> vl;
typedef vector<P> vp;
#define pb push_back
#define sz(x) (int)(x).size()
#define fi first
#define se second
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define rrep(i,n) for(int i = 1; i <= (n); ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
const int INF=1001001000;
const int mINF=-1001001000;
const ll LINF=1010010010010010000;
template<class T> inline bool chmin(T& a, T b) {
if (a > b) {
a = b;
return true;
}
return false;
}
template<class T> inline bool chmax(T& a, T b) {
if (a < b) {
a = b;
return true;
}
return false;
}
//グリッド:(典型)dp,dfs,bfs,最短経路,その他
ll gcd(ll a, ll b) { return b?gcd(b,a%b):a;}

struct SegmentTree{
int n;
vector<ll> node;
SegmentTree(vector<ll> v){
int sz=v.size();
n=1;
while(n<sz) n*=2;
node.resize(2*n-1,-1);
for(int i=0;i<sz;i++) node[i+n-1]=v[i];
for(int i=n-2;i>=0;i--){
    if(node[2*i+1]==-1&&node[2*i+2]==-1)node[i]=-1;
    else if(node[2*i+1]==-1&&node[2*i+2]!=-1) node[i]=node[2*i+2];
    else if(node[2*i+1]!=-1&&node[2*i+2]==-1)node[i]=node[2*i+1];
    else 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]=min(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 -1;
if(a<=l&&r<=b) return node[k];
ll v1=getgcd(a,b,2*k+1,l,(r+l)/2);
ll v2=getgcd(a,b,2*k+2,(r+l)/2,r);
if(v1==-1&&v2!=-1)return v2;
if(v1!=-1&&v2==-1)return v1;
return gcd(v1,v2);
}
};
int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    ll n;cin>>n;
    vl a(n);rep(i,n)cin>>a[i];
    SegmentTree seg(a);
    ll j=1;
    ll ans=0;
    rep(i,n){
        while(seg.getgcd(i,j)!=1&&j<=n){
            j++;
        }
        if(j==n&&seg.getgcd(i,n)!=1)break;
        ans+=n-j+1;
    }
    cout<<ans<<endl;
    return 0;
}
0