結果

問題 No.1036 Make One With GCD 2
ユーザー ゆにぽけゆにぽけ
提出日時 2023-10-25 14:40:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 864 ms / 2,000 ms
コード長 2,314 bytes
コンパイル時間 1,434 ms
コンパイル使用メモリ 131,888 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-09-25 05:51:57
合計ジャッジ時間 14,262 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 437 ms
15,296 KB
testcase_01 AC 95 ms
15,288 KB
testcase_02 AC 186 ms
15,308 KB
testcase_03 AC 21 ms
8,692 KB
testcase_04 AC 34 ms
13,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 37 ms
8,840 KB
testcase_08 AC 31 ms
8,732 KB
testcase_09 AC 221 ms
15,172 KB
testcase_10 AC 208 ms
14,892 KB
testcase_11 AC 227 ms
15,308 KB
testcase_12 AC 209 ms
14,976 KB
testcase_13 AC 360 ms
14,976 KB
testcase_14 AC 366 ms
15,224 KB
testcase_15 AC 346 ms
14,976 KB
testcase_16 AC 350 ms
14,936 KB
testcase_17 AC 361 ms
14,976 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 339 ms
14,756 KB
testcase_23 AC 256 ms
13,952 KB
testcase_24 AC 355 ms
15,104 KB
testcase_25 AC 325 ms
14,696 KB
testcase_26 AC 333 ms
14,848 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 1 ms
5,376 KB
testcase_38 AC 364 ms
15,360 KB
testcase_39 AC 864 ms
15,188 KB
testcase_40 AC 254 ms
13,952 KB
testcase_41 AC 629 ms
15,360 KB
testcase_42 AC 605 ms
15,360 KB
testcase_43 AC 570 ms
15,360 KB
testcase_44 AC 626 ms
15,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<cstring>
#include<cassert>
#include<cmath>
#include<ctime>
#include<iomanip>
#include<numeric>
#include<stack>
#include<queue>
#include<map>
#include<unordered_map>
#include<set>
#include<unordered_set>
#include<bitset>
#include<random>
#include<functional>
#include<utility>
#include<atcoder/segtree>
using namespace std;
template<class T,T (*op)(T,T),T (*e)()> struct SegmentTree
{
    private:
    int siz;
    vector<T> node;

    public:
    SegmentTree(int n) noexcept
    {
        siz = 1;
        while(siz < n) siz <<= 1;

        node.assign(2*siz-1,e());
    }

    void replace(int pos,T x) noexcept {func_update(pos,x,[](T u,T v){return u = v;});}

    void add(int pos,T x) noexcept {func_update(pos,x,[](T u,T v){return u+v;});}

    void func_update(int pos,T x) noexcept {func_update(pos,x,op);}
    
    void func_update(int pos,T x,T (*func)(T,T)) noexcept
    {
        assert(0 <= pos && pos < siz);
        pos += siz - 1;

        node[pos] = func(node[pos],x);

        while(pos)
        {
            pos = (pos-1)/2;
            node[pos] = op(node[2*pos+1],node[2*pos+2]);
        }
    }

    T operator [](int pos) noexcept
    {
        assert(0 <= pos && pos < siz);
        return node[pos+siz-1];
    }

    T prod(int l,int r) noexcept
    {
        assert(0 <= l && l <= r && r <= siz);

        l += siz-1;
        r += siz-1;

        T Lval = e();
        T Rval = e();

        while(l < r)
        {
            if(!(l & 1)) Lval = op(Lval,node[l++]);
            if(!(r & 1)) Rval = op(node[--r],Rval);

            l >>= 1;
            r >>= 1;
        }

        return op(Lval,Rval);
    }

    T prod() noexcept {return node[0];}
};
long long op(long long a,long long b)
{
	while(b)
	{
		a %= b;
		swap(a,b);
	}
	return a;
}
long long e() {return 0;}
int N;
void solve()
{
	cin >> N;
	vector<long long> A(N);
	for(int i = 0;i < N;i++) cin >> A[i];
	atcoder::segtree<long long,op,e> seg(A);
	long long ans = 0;
	int ri = 0;
	for(int i = 0;i < N;i++)
	{
		while(ri <= N)
		{
			long long g = seg.prod(i,ri);
			if(g == 1) break;
			else ri++;
		}
		ans += N-ri+1;
	}
	cout << ans << endl;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int tt = 1;
	//cin >> tt;
	while(tt--) solve();
}
0