結果

問題 No.1036 Make One With GCD 2
ユーザー furafura
提出日時 2021-05-28 17:29:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 1,255 bytes
コンパイル時間 2,300 ms
コンパイル使用メモリ 209,748 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-09-16 14:37:34
合計ジャッジ時間 11,620 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 249 ms
79,360 KB
testcase_01 AC 212 ms
79,360 KB
testcase_02 AC 192 ms
79,360 KB
testcase_03 AC 50 ms
29,440 KB
testcase_04 AC 88 ms
51,328 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 84 ms
33,792 KB
testcase_08 AC 69 ms
27,776 KB
testcase_09 AC 230 ms
77,568 KB
testcase_10 AC 204 ms
72,064 KB
testcase_11 AC 227 ms
79,104 KB
testcase_12 AC 207 ms
72,832 KB
testcase_13 AC 299 ms
75,648 KB
testcase_14 AC 290 ms
76,544 KB
testcase_15 AC 274 ms
71,680 KB
testcase_16 AC 288 ms
72,192 KB
testcase_17 AC 300 ms
74,496 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 284 ms
70,656 KB
testcase_23 AC 207 ms
51,712 KB
testcase_24 AC 289 ms
73,600 KB
testcase_25 AC 269 ms
66,944 KB
testcase_26 AC 271 ms
69,504 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 2 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 190 ms
79,360 KB
testcase_39 AC 269 ms
79,488 KB
testcase_40 AC 197 ms
51,712 KB
testcase_41 AC 253 ms
79,360 KB
testcase_42 AC 260 ms
79,360 KB
testcase_43 AC 243 ms
79,488 KB
testcase_44 AC 248 ms
79,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;
using lint=long long;

template<class B>
class sparse_table{
	vector<vector<B>> st;
	vector<int> h;
public:
	sparse_table()=default;
	template<class T>
	sparse_table(const vector<T>& a){ build(a); }

	template<class T>
	void build(const vector<T>& a){
		int n=a.size();
		h.assign(n+1,0);
		for(int i=2;i<=n;i++) h[i]=h[i>>1]+1;
		st.resize(h[n]+1);
		st[0].resize(n);
		rep(i,n) st[0][i]=a[i];
		for(int i=1;i<h[n]+1;i++){
			st[i].resize(n-(1<<i)+1);
			rep(j,n-(1<<i)+1) st[i][j]=st[i-1][j]*st[i-1][j+(1<<(i-1))];
		}
	}

	B product(int l,int r)const{
		int i=h[r-l];
		return st[i][l]*st[i][r-(1<<i)];
	}
};

template<class T>
class gcd_monoid{
	T a;
public:
	gcd_monoid(const T& val=T()):a(val){}
	gcd_monoid operator*(const gcd_monoid& x)const{
		return gcd(a,x.a);
	}
	T& get(){ return a; }
	const T& get()const{ return a; }
};

int main(){
	int n; scanf("%d",&n);
	vector<lint> a(n);
	rep(i,n) scanf("%lld",&a[i]);

	sparse_table<gcd_monoid<lint>> ST(a);

	lint ans=0;
	for(int l=0,r=0;l<n;l++){
		r=max(r,l+1);
		while(r<n && ST.product(l,r).get()>1) r++;
		if(r==n && ST.product(l,r).get()>1) continue;
		ans+=n-r+1;
	}
	printf("%lld\n",ans);

	return 0;
}
0