結果

問題 No.1036 Make One With GCD 2
ユーザー roarisroaris
提出日時 2020-04-27 15:27:20
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 1,377 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 163,216 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-09-16 14:15:36
合計ジャッジ時間 14,747 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 364 ms
15,360 KB
testcase_01 AC 348 ms
15,488 KB
testcase_02 AC 315 ms
15,296 KB
testcase_03 AC 40 ms
8,704 KB
testcase_04 AC 67 ms
13,824 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 110 ms
8,960 KB
testcase_08 AC 91 ms
8,832 KB
testcase_09 AC 311 ms
15,104 KB
testcase_10 AC 297 ms
14,936 KB
testcase_11 AC 313 ms
15,488 KB
testcase_12 AC 290 ms
15,104 KB
testcase_13 AC 421 ms
15,360 KB
testcase_14 AC 428 ms
15,104 KB
testcase_15 AC 406 ms
14,976 KB
testcase_16 AC 403 ms
14,848 KB
testcase_17 AC 415 ms
15,232 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 393 ms
14,848 KB
testcase_23 AC 294 ms
14,080 KB
testcase_24 AC 404 ms
15,232 KB
testcase_25 AC 371 ms
14,720 KB
testcase_26 AC 383 ms
14,976 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 302 ms
15,364 KB
testcase_39 AC 379 ms
15,360 KB
testcase_40 AC 292 ms
13,952 KB
testcase_41 AC 433 ms
15,420 KB
testcase_42 AC 422 ms
15,476 KB
testcase_43 AC 426 ms
15,360 KB
testcase_44 AC 430 ms
15,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i=0; i<n; i++)
#define pb push_back
#define int long long

struct segtree {
    int size;
    vector<int> node;
    
    segtree(int n) {
        size = 1;
        while (size<n) size *= 2;
        node.resize(2*size-1);
        fill(node.begin(), node.end(), 0);
    }

    void update(int k, int a) {
        k += size-1;
        node[k] = a;
        while (k>0) {
            k = (k-1)/2;
            node[k] = gcd(node[2*k+1], node[2*k+2]);
        }
    }
    
    int query(int a, int b, int k, int l, int r) {
        if (r<=a || b<=l) return 0;
        if (a<=l && r<=b) return node[k];
        else {
            int vl = query(a, b, 2*k+1, l, (l+r)/2);
            int vr = query(a, b, 2*k+2, (l+r)/2, r);
            return gcd(vl, vr);
        }
    }

    int get(int a, int b) {
        return query(a, b, 0, 0, size);
    }
};

signed main() {
    cin.tie(0); ios::sync_with_stdio(false);
    int N; cin >> N;
    int A[N];
    rep(i, N) cin >> A[i];
    
    segtree st(N);
    rep(i, N) st.update(i, A[i]);
    
    int ans = 0;
    int r = 0;
    int G = 0;
    rep(l, N) {
        while (r<N && gcd(G, A[r])>1) {
            G = gcd(G, A[r]);
            r++;
        }
        ans += N-r;
        if (l==r) r++;
        else G = st.get(l+1, r);
    }
    
    printf("%lld\n", ans);
}
0