結果

問題 No.1036 Make One With GCD 2
ユーザー 沙耶花沙耶花
提出日時 2020-04-25 19:57:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 549 ms / 2,000 ms
コード長 1,188 bytes
コンパイル時間 2,665 ms
コンパイル使用メモリ 205,424 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-11-07 18:04:42
合計ジャッジ時間 17,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 519 ms
81,280 KB
testcase_01 AC 354 ms
81,408 KB
testcase_02 AC 191 ms
81,408 KB
testcase_03 AC 102 ms
30,720 KB
testcase_04 AC 174 ms
54,144 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 142 ms
34,816 KB
testcase_08 AC 113 ms
29,056 KB
testcase_09 AC 360 ms
79,488 KB
testcase_10 AC 330 ms
74,368 KB
testcase_11 AC 366 ms
81,152 KB
testcase_12 AC 359 ms
74,880 KB
testcase_13 AC 431 ms
77,824 KB
testcase_14 AC 436 ms
78,592 KB
testcase_15 AC 404 ms
73,856 KB
testcase_16 AC 401 ms
74,368 KB
testcase_17 AC 420 ms
76,672 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 4 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 397 ms
72,832 KB
testcase_23 AC 291 ms
54,528 KB
testcase_24 AC 413 ms
75,648 KB
testcase_25 AC 377 ms
69,248 KB
testcase_26 AC 410 ms
71,680 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 186 ms
81,408 KB
testcase_39 AC 508 ms
81,408 KB
testcase_40 AC 298 ms
54,528 KB
testcase_41 AC 535 ms
81,536 KB
testcase_42 AC 523 ms
81,280 KB
testcase_43 AC 508 ms
81,408 KB
testcase_44 AC 549 ms
81,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 1000000000000000001

template <typename T>
struct sparse_table{
	const T init_value = 0;
	
	vector<T> v;
	int n;
	int sz;
	sparse_table(vector<T> &x){
		sz = x.size();
		for(int i=0;true;i++){
			if((1<<i)>sz){
				n = i;
				break;
			}
		}
		v.resize(sz*n,init_value);
		
		for(int i=0;i<sz;i++){
			v[i] = x[i];
		}
		
		for(int i=1;i<n;i++){
			for(int j=0;j<sz+1-(1<<i);j++){
				int temp = j+(1<<(i-1));
				v[i*sz+j] = func(v[(i-1)*sz+j],v[(i-1)*sz+temp]);
			}
		}
	}
	
	T query(int l,int r){
		int x = 31-__builtin_clz(r-l);
		return func(v[sz*x+l],v[sz*x+r-(1<<x)]);
	}
	
	T func(T a,T b){
		return gcd(a,b);//min(a,b);
	}
};

int main(){
	
	long long N;
	cin>>N;
	vector<long long> A(N);
	for(int i=0;i<N;i++){
		scanf("%lld",&A[i]);
	}
	
	sparse_table<long long> seg(A);
	
	long long ans = 0;
	
	for(int i=0;i<N;i++){
		if(seg.query(i,N)>1)break;
		int ok = i;
		int ng = N+1;
		
		while(ng-ok>1){
			int mid = (ok+ng)/2;
			if(seg.query(i,mid)==1)ng = mid;
			else ok=mid;
		}
		
		ans += N+1-ng;
	}
	
	cout<<ans<<endl;
		
	return 0;
}
0