結果

問題 No.1036 Make One With GCD 2
ユーザー StrorkisStrorkis
提出日時 2020-04-25 17:34:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,218 ms / 2,000 ms
コード長 1,258 bytes
コンパイル時間 916 ms
コンパイル使用メモリ 75,516 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-09-16 13:50:33
合計ジャッジ時間 21,895 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 794 ms
15,488 KB
testcase_01 AC 383 ms
15,360 KB
testcase_02 AC 479 ms
15,360 KB
testcase_03 AC 60 ms
8,704 KB
testcase_04 AC 106 ms
13,952 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 139 ms
8,960 KB
testcase_08 AC 115 ms
8,704 KB
testcase_09 AC 497 ms
15,232 KB
testcase_10 AC 466 ms
14,976 KB
testcase_11 AC 508 ms
15,360 KB
testcase_12 AC 469 ms
15,104 KB
testcase_13 AC 733 ms
15,232 KB
testcase_14 AC 742 ms
15,232 KB
testcase_15 AC 696 ms
14,976 KB
testcase_16 AC 701 ms
14,976 KB
testcase_17 AC 723 ms
15,104 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 686 ms
14,848 KB
testcase_23 AC 510 ms
13,952 KB
testcase_24 AC 713 ms
14,976 KB
testcase_25 AC 650 ms
14,720 KB
testcase_26 AC 677 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 2 ms
5,376 KB
testcase_38 AC 702 ms
15,360 KB
testcase_39 AC 1,218 ms
15,360 KB
testcase_40 AC 512 ms
13,952 KB
testcase_41 AC 1,035 ms
15,360 KB
testcase_42 AC 1,019 ms
15,360 KB
testcase_43 AC 988 ms
15,360 KB
testcase_44 AC 1,045 ms
15,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

long long gcd(long long a, long long b) {
    if (a == 0) return b;
    if (b == 0) return a;
    long long r = a % b;
    return r ? gcd(b, r) : b;
}

struct SegmentTree {
    int n;
    std::vector<long long> node;

    SegmentTree(const std::vector<long long>& A) {
        n = 1;
        while (n < A.size()) n *= 2;
        node.resize(n * 2 - 1);

        for (int i = 0; i < A.size(); i++)
            node[i + n - 1] = A[i];
        for (int i = n - 2; i >= 0; i--)
            node[i] = gcd(node[i * 2 + 1], node[i * 2 + 2]);
    }

    long long get(int a, int b, int k=0, int l=0, int r=-1) {
        if (r < 0) r = n;
        if (r <= a || b <= l) return 0;
        if (a <= l && r <= b) return node[k];
        return gcd(
            get(a, b, k * 2 + 1, l, (l + r) / 2),
            get(a, b, k * 2 + 2, (l + r) / 2, r)
        );
    }
};

int main() {
    int N;
    std::cin >> N;

    std::vector<long long> A(N);
    for (int i = 0; i < N; i++)
        std::cin >> A[i];

    SegmentTree st(A);
    long long ans = 0;
    int i = 0, j = 1;
    while (i < N) {
        while (j <= N && st.get(i, j) != 1) j++;
        ans += N - j + 1;
        if (++i == j) j++;
    }
    std::cout << ans << "\n";
}
0