結果

問題 No.1036 Make One With GCD 2
ユーザー betrue12betrue12
提出日時 2020-04-24 21:42:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 578 ms / 2,000 ms
コード長 1,387 bytes
コンパイル時間 2,439 ms
コンパイル使用メモリ 211,372 KB
実行使用メモリ 89,232 KB
最終ジャッジ日時 2024-09-16 13:11:53
合計ジャッジ時間 18,777 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
89,088 KB
testcase_01 AC 395 ms
89,088 KB
testcase_02 AC 490 ms
89,216 KB
testcase_03 AC 88 ms
43,648 KB
testcase_04 AC 170 ms
87,752 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 167 ms
43,904 KB
testcase_08 AC 146 ms
43,648 KB
testcase_09 AC 397 ms
89,008 KB
testcase_10 AC 376 ms
88,704 KB
testcase_11 AC 402 ms
89,088 KB
testcase_12 AC 380 ms
88,832 KB
testcase_13 AC 577 ms
89,088 KB
testcase_14 AC 578 ms
89,064 KB
testcase_15 AC 549 ms
88,704 KB
testcase_16 AC 553 ms
88,704 KB
testcase_17 AC 567 ms
88,960 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 543 ms
88,704 KB
testcase_23 AC 426 ms
87,828 KB
testcase_24 AC 564 ms
88,832 KB
testcase_25 AC 522 ms
88,576 KB
testcase_26 AC 537 ms
88,760 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 466 ms
89,076 KB
testcase_39 AC 560 ms
89,080 KB
testcase_40 AC 427 ms
87,760 KB
testcase_41 AC 543 ms
89,216 KB
testcase_42 AC 541 ms
89,088 KB
testcase_43 AC 531 ms
89,072 KB
testcase_44 AC 538 ms
89,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template<typename T>
struct SparseTable{
    vector<vector<T>> dat;
    vector<int> lookup;
    typedef function<T(T a, T b)> Func;
    Func f;
    T e;

    SparseTable(){}
    SparseTable(const vector<T> &v, Func f, T e){ initialize(v, f, e); }
    void initialize(const vector<T> &v, Func fin, T ein){
        f = fin;
        e = ein;
        int b = 0;
        while((1<<b) <= v.size()) b++;
        int N = 1<<b;
        dat.assign(b, vector<T>(N, e));
        for(int i=0; i<v.size(); i++) dat[0][i] = v[i];

        for(int i=1; i<b; i++){
            int d = 1<<i;
            for(int j=0; j+d<=N; j++){
                dat[i][j] = f(dat[i-1][j], dat[i-1][j+d/2]);
            }
        }
        lookup.assign(N+1, 0);
        for(int i=2; i<=N; i++){
            lookup[i] = lookup[i>>1] + 1;
        }
    }

    T between(int l, int r) {
        if(l > r) return e;
        r++;
        int b = lookup[r-l];
        return f(dat[b][l], dat[b][r-(1<<b)]);
    }
};

int main(){
    int N;
    cin >> N;
    vector<int64_t> A(N);
    for(int i=0; i<N; i++) cin >> A[i];

    SparseTable<int64_t> st(A, [](auto a, auto b){ return gcd(a, b); }, 0);
    int r = 0;
    int64_t ans = 0;
    for(int l=0; l<N; l++){
        while(r < N && st.between(l, r) != 1) r++;
        ans += N-r;
    }
    cout << ans << endl;
    return 0;
}
0