結果

問題 No.1036 Make One With GCD 2
ユーザー 👑 jupirojupiro
提出日時 2020-04-24 21:41:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,786 bytes
コンパイル時間 1,400 ms
コンパイル使用メモリ 133,736 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-04-24 17:24:55
合計ジャッジ時間 41,352 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,795 ms
15,436 KB
testcase_01 AC 1,326 ms
15,592 KB
testcase_02 AC 97 ms
15,432 KB
testcase_03 AC 20 ms
8,844 KB
testcase_04 AC 37 ms
14,080 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 259 ms
9,088 KB
testcase_08 AC 203 ms
8,808 KB
testcase_09 AC 1,346 ms
15,488 KB
testcase_10 AC 1,256 ms
15,104 KB
testcase_11 AC 1,400 ms
15,588 KB
testcase_12 AC 1,299 ms
15,232 KB
testcase_13 AC 1,621 ms
15,232 KB
testcase_14 AC 1,650 ms
15,488 KB
testcase_15 AC 1,510 ms
15,048 KB
testcase_16 AC 1,557 ms
15,104 KB
testcase_17 AC 1,571 ms
15,192 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 1,494 ms
15,104 KB
testcase_23 AC 1,072 ms
14,080 KB
testcase_24 AC 1,596 ms
15,232 KB
testcase_25 AC 1,408 ms
14,848 KB
testcase_26 AC 1,457 ms
15,056 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 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 1 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 96 ms
15,500 KB
testcase_39 TLE -
testcase_40 AC 1,091 ms
14,080 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 1,853 ms
15,616 KB
testcase_44 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>
#include <numeric>

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

constexpr long long MAX = 5100000;
constexpr long long INF = 1LL << 60;
constexpr int inf = 1000000007;
constexpr long long mod = 1000000007LL;
//constexpr long long mod = 998244353LL;

using namespace std;
typedef unsigned long long ull;
typedef long long ll;

template< typename Monoid >
struct SegmentTree {
    using F = function< Monoid(Monoid, Monoid) >;

    int sz;
    vector< Monoid > seg;

    const F f;
    const Monoid M1;

    SegmentTree(int n, const F f, const Monoid& M1) : f(f), M1(M1) {
        sz = 1;
        while (sz < n) sz <<= 1;
        seg.assign(2 * sz, M1);
    }

    void set(int k, const Monoid& x) {
        seg[k + sz] = x;
    }

    void build() {
        for (int k = sz - 1; k > 0; k--) {
            seg[k] = f(seg[2 * k + 0], seg[2 * k + 1]);
        }
    }

    void update(int k, const Monoid& x) {
        k += sz;
        seg[k] = x;
        while (k >>= 1) {
            seg[k] = f(seg[2 * k + 0], seg[2 * k + 1]);
        }
    }

    Monoid query(int a, int b) {
        Monoid L = M1, R = M1;
        if (a >= b) return M1;
        for (a += sz, b += sz; a < b; a >>= 1, b >>= 1) {
            if (a & 1) L = f(L, seg[a++]);
            if (b & 1) R = f(seg[--b], R);
        }
        return f(L, R);
    }
};

ll f(ll a, ll b) {
    return gcd(a, b);
}

int main()
{
	/*
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	*/

	ll N; scanf("%lld", &N);
	vector<ll> a(N); for (int i = 0; i < N; i++) scanf("%lld", &a[i]);
    SegmentTree<ll> seg(N, f, 0);
    for (int i = 0; i < N; i++) seg.set(i, a[i]);
    seg.build();
    ll res = 0;
    for (int i = 0; i < N; i++) {
        if (a[i] == 1) {
            res += N - i;
            continue;
        }
        if (seg.query(i, N) != 1) break;
        ll left = i + 1;
        ll right = N + 1;
        while (right - left > 1) {
            ll mid = (left + right) >> 1;
            if (seg.query(i, mid) == 1) {
                right = mid;
            }
            else {
                left = mid;
            }
        }
        res += N - right + 1;
        //cout << res << endl;
    }
    cout << res << endl;
	return 0;
}


0