結果

問題 No.1036 Make One With GCD 2
ユーザー ningenMeningenMe
提出日時 2020-04-25 17:57:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,438 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 172,300 KB
実行使用メモリ 86,912 KB
最終ジャッジ日時 2024-11-07 11:21:57
合計ジャッジ時間 20,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 247 ms
86,912 KB
testcase_01 AC 237 ms
86,912 KB
testcase_02 AC 244 ms
86,912 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 360 ms
86,784 KB
testcase_10 AC 333 ms
86,400 KB
testcase_11 AC 360 ms
86,912 KB
testcase_12 AC 337 ms
86,272 KB
testcase_13 AC 501 ms
86,656 KB
testcase_14 AC 508 ms
86,656 KB
testcase_15 AC 482 ms
86,400 KB
testcase_16 AC 485 ms
86,400 KB
testcase_17 AC 499 ms
86,528 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 480 ms
86,272 KB
testcase_23 AC 385 ms
84,736 KB
testcase_24 AC 492 ms
86,528 KB
testcase_25 AC 460 ms
86,016 KB
testcase_26 AC 476 ms
86,144 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 WA -
testcase_34 RE -
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 RE -
testcase_39 AC 277 ms
86,912 KB
testcase_40 AC 383 ms
84,864 KB
testcase_41 AC 937 ms
86,912 KB
testcase_42 AC 903 ms
86,784 KB
testcase_43 AC 753 ms
86,912 KB
testcase_44 AC 852 ms
86,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define SPEED cin.tie(0);ios::sync_with_stdio(false);

template<class Operator> class SparseTable{
public:
	Operator Op;                           
	using typeNode = decltype(Op.unitNode);
	vector<typeNode> node;
	vector<int> idx;
	size_t depth;
	size_t length;

	SparseTable(const vector<typeNode>& vec) {
		for(depth = 0;(1<<depth)<=vec.size();++depth);
		length = (1<<depth);
		node.resize(depth*length);
		for(int i = 0; i < vec.size(); ++i) node[i] = vec[i];
		for(int i = 1; i < depth; ++i) for(int j = 0; j + (1<<i) < (1<<depth); ++j) node[i*length+j] = Op.funcNode(node[(i-1)*length+j],node[(i-1)*length+j + (1 << (i-1))]);
		idx.resize(vec.size()+1);
		for(int i = 2; i < vec.size()+1; ++i) idx[i] = idx[i>>1] + 1;
	}

	//[l,r)
	typeNode get(int l,int r) {
		int bit = idx[r-l];
		return Op.funcNode(node[bit*length+l],node[bit*length+r - (1<<bit)]);
	}
};

template<class typeNode> struct nodeGCD {
	typeNode unitNode = 0;
	typeNode funcNode(typeNode l,typeNode r){return ((r == 0) ? l : funcNode(r, l % r));}
};

// solution by binary search in arbitary range on disjn sparse table 
int main() {
	SPEED
	ll N; cin >> N;
	vector<ll> A(N+1,1);
	for(int i = 0; i < N; ++i) cin >> A[i];
	SparseTable<nodeGCD<ll>> st(A);
	ll ans=0;
	int r=1;
	for(int i=0; i<N; i++){
		while(r<=N){
			if(st.get(i, r)==1) break;
			r++;
		}
		ans+=N+1-r;
	}
	cout << ans << endl;
}
0