結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 733 ms
15,360 KB
testcase_01 AC 358 ms
15,360 KB
testcase_02 AC 449 ms
15,360 KB
testcase_03 AC 56 ms
8,704 KB
testcase_04 AC 98 ms
13,952 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 130 ms
9,088 KB
testcase_08 AC 108 ms
8,704 KB
testcase_09 AC 474 ms
15,360 KB
testcase_10 AC 435 ms
15,104 KB
testcase_11 AC 476 ms
15,360 KB
testcase_12 AC 435 ms
14,976 KB
testcase_13 AC 692 ms
15,104 KB
testcase_14 AC 705 ms
15,232 KB
testcase_15 AC 660 ms
14,976 KB
testcase_16 AC 664 ms
14,976 KB
testcase_17 AC 677 ms
15,104 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 639 ms
14,848 KB
testcase_23 AC 477 ms
13,952 KB
testcase_24 AC 656 ms
14,976 KB
testcase_25 AC 612 ms
14,848 KB
testcase_26 AC 636 ms
14,848 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 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 1 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 674 ms
15,360 KB
testcase_39 AC 1,130 ms
15,360 KB
testcase_40 AC 498 ms
14,080 KB
testcase_41 AC 967 ms
15,488 KB
testcase_42 AC 946 ms
15,360 KB
testcase_43 AC 907 ms
15,488 KB
testcase_44 AC 968 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