結果

問題 No.1036 Make One With GCD 2
ユーザー firiexpfiriexp
提出日時 2020-04-25 17:48:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 1,574 bytes
コンパイル時間 1,289 ms
コンパイル使用メモリ 112,344 KB
実行使用メモリ 15,260 KB
最終ジャッジ日時 2024-09-16 13:51:18
合計ジャッジ時間 10,322 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
8,988 KB
testcase_01 AC 83 ms
7,296 KB
testcase_02 AC 103 ms
15,256 KB
testcase_03 AC 19 ms
5,376 KB
testcase_04 AC 31 ms
5,888 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 32 ms
5,376 KB
testcase_08 AC 26 ms
5,376 KB
testcase_09 AC 216 ms
7,168 KB
testcase_10 AC 199 ms
6,912 KB
testcase_11 AC 224 ms
7,296 KB
testcase_12 AC 199 ms
6,784 KB
testcase_13 AC 358 ms
6,912 KB
testcase_14 AC 369 ms
7,168 KB
testcase_15 AC 345 ms
6,784 KB
testcase_16 AC 350 ms
6,912 KB
testcase_17 AC 363 ms
7,040 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 345 ms
6,784 KB
testcase_23 AC 253 ms
5,760 KB
testcase_24 AC 356 ms
6,912 KB
testcase_25 AC 322 ms
6,656 KB
testcase_26 AC 334 ms
6,784 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 1 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 103 ms
15,260 KB
testcase_39 AC 108 ms
7,296 KB
testcase_40 AC 252 ms
6,016 KB
testcase_41 AC 256 ms
7,424 KB
testcase_42 AC 250 ms
7,168 KB
testcase_43 AC 239 ms
12,448 KB
testcase_44 AC 247 ms
10,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = uint32_t;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;

ll gcd_(ll x, ll y){
    if(x < y) swap(x, y);
    while(y){
        x %= y;
        swap(x, y);
    }
    return x;
}

template<class G>
class SWAG {
    using T = typename G::T;
    vector<T> in, out, insum, outsum;
public:
    SWAG() : in(0), out(0), insum(1, G::e()), outsum(1, G::e()) {}

    void push(const T& v){
        insum.push_back(G::f(insum.back(), v));
        in.push_back(v);
    }

    void pop(){
        if(out.empty()){
            do {
                out.emplace_back(in.back());
                outsum.emplace_back(G::f(in.back(), outsum.back()));
                in.pop_back(); insum.pop_back();
            }while(!in.empty());
        }
        out.pop_back(); outsum.pop_back();
    }

    T fold(){
        return G::f(outsum.back(), insum.back());
    }
};

struct Monoid {
    using T = ll;
    static T f(T a, T b) { return gcd_(a, b); }
    static T e() { return 0; }
};

int main() {
    int n;
    cin >> n;
    vector<ll> v(n);
    for (auto &&k : v) scanf("%lld", &k);
    SWAG<Monoid> Q;
    ll ans = 0, val = 0;
    for (int i = 0; i < n; ++i) {
        Q.push(v[i]);
        while(Q.fold() == 1) Q.pop(), val++;
        ans += val;
    }
    cout << ans << "\n";
    return 0;
}
0