結果

問題 No.1036 Make One With GCD 2
ユーザー firiexpfiriexp
提出日時 2020-04-25 17:53:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 1,545 bytes
コンパイル時間 1,303 ms
コンパイル使用メモリ 114,696 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-09-16 13:51:07
合計ジャッジ時間 11,365 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
7,808 KB
testcase_01 AC 94 ms
7,296 KB
testcase_02 AC 114 ms
15,488 KB
testcase_03 AC 21 ms
5,376 KB
testcase_04 AC 37 ms
6,016 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 38 ms
5,376 KB
testcase_08 AC 30 ms
5,376 KB
testcase_09 AC 242 ms
7,040 KB
testcase_10 AC 227 ms
6,912 KB
testcase_11 AC 247 ms
7,280 KB
testcase_12 AC 227 ms
6,784 KB
testcase_13 AC 403 ms
7,040 KB
testcase_14 AC 410 ms
7,168 KB
testcase_15 AC 383 ms
6,912 KB
testcase_16 AC 386 ms
6,912 KB
testcase_17 AC 398 ms
7,160 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 378 ms
6,784 KB
testcase_23 AC 278 ms
5,888 KB
testcase_24 AC 393 ms
6,912 KB
testcase_25 AC 361 ms
6,656 KB
testcase_26 AC 374 ms
6,912 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 112 ms
15,488 KB
testcase_39 AC 123 ms
7,168 KB
testcase_40 AC 279 ms
5,888 KB
testcase_41 AC 291 ms
7,168 KB
testcase_42 AC 291 ms
7,296 KB
testcase_43 AC 253 ms
9,536 KB
testcase_44 AC 277 ms
8,448 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;
    stack<T> in, out, insum, outsum;
public:
    SWAG() {
        insum.emplace(G::e());
        outsum.emplace(G::e());
    }

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

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

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

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