結果

問題 No.1036 Make One With GCD 2
ユーザー leaf_1415leaf_1415
提出日時 2020-04-24 21:51:44
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,816 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 84,276 KB
実行使用メモリ 94,252 KB
最終ジャッジ日時 2024-11-07 20:33:51
合計ジャッジ時間 29,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 491 ms
94,252 KB
testcase_01 AC 429 ms
88,960 KB
testcase_02 AC 515 ms
88,960 KB
testcase_03 AC 184 ms
86,528 KB
testcase_04 AC 276 ms
87,680 KB
testcase_05 AC 85 ms
85,120 KB
testcase_06 AC 84 ms
85,120 KB
testcase_07 AC 220 ms
86,912 KB
testcase_08 AC 192 ms
86,528 KB
testcase_09 AC 558 ms
88,960 KB
testcase_10 AC 524 ms
88,704 KB
testcase_11 AC 567 ms
89,088 KB
testcase_12 AC 527 ms
88,704 KB
testcase_13 AC 712 ms
88,832 KB
testcase_14 AC 709 ms
88,832 KB
testcase_15 AC 667 ms
88,576 KB
testcase_16 AC 669 ms
88,832 KB
testcase_17 AC 696 ms
88,832 KB
testcase_18 AC 79 ms
85,204 KB
testcase_19 AC 81 ms
85,120 KB
testcase_20 AC 86 ms
85,120 KB
testcase_21 AC 86 ms
85,120 KB
testcase_22 AC 662 ms
88,576 KB
testcase_23 AC 502 ms
87,680 KB
testcase_24 AC 684 ms
88,704 KB
testcase_25 AC 627 ms
88,448 KB
testcase_26 AC 653 ms
88,576 KB
testcase_27 AC 84 ms
85,120 KB
testcase_28 AC 85 ms
85,248 KB
testcase_29 AC 84 ms
85,120 KB
testcase_30 AC 85 ms
85,120 KB
testcase_31 AC 83 ms
85,120 KB
testcase_32 AC 84 ms
85,248 KB
testcase_33 AC 83 ms
85,120 KB
testcase_34 AC 84 ms
85,120 KB
testcase_35 AC 84 ms
85,120 KB
testcase_36 AC 84 ms
85,120 KB
testcase_37 AC 84 ms
85,120 KB
testcase_38 AC 525 ms
88,960 KB
testcase_39 AC 497 ms
89,088 KB
testcase_40 AC 508 ms
87,680 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#define llint long long
#define inf 1e18
#define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++)
#define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define mod 1000000007

using namespace std;
typedef pair<llint, llint> P;

llint gcd(llint a, llint b)
{
	if(b == 0) return a;
	return gcd(b, a%b);
}

struct SparseTable{
	int size;
	vector<vector<llint> > vec;
	SparseTable(){}
	SparseTable(int size){
		this->size = size;
		vec.resize(size+1);
		for(int i = 0; i <= size; i++) vec[i].resize(1<<size);
		for(int i = 0; i < (1<<size); i++) vec[0][i] = 0;  //
	}
	void set(int i, llint val){
		vec[0][i] = val;
	}
	void calc(){
		for(int i = 1; i <= size; i++){
			for(int j = 0; j < (1<<size); j++){
				if(j+(1<<(i-1)) < (1<<size)){
					vec[i][j] = gcd(vec[i-1][j], vec[i-1][j+(1<<(i-1))]); //
				}
			}
		}
	}
	llint query(int l, int r)
	{
		int k = 0;
		for(int i = 0; r-l+1 >= (1<<i); i++) k = i;
		return gcd(vec[k][l], vec[k][r-(1<<k)+1]); //
	}
};


llint n;
llint a[500005];
SparseTable sp(19);

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n;
	for(int i = 1; i <= n; i++) cin >> a[i];
	for(int i = 1; i <= n; i++) sp.set(i, a[i]);
	sp.calc();
	
	llint ans = 0;
	for(int i = 1; i <= n; i++){
		llint ub = n+1, lb = i-1, mid;
		while(ub-lb>1){
			mid = (ub+lb)/2;
			if(mid >= i && sp.query(i, mid) == 1) ub = mid;
			else lb = mid;
		}
		ans += n-ub+1;
	}
	cout << ans << endl;
	
	return 0;
}
0