結果

問題 No.1036 Make One With GCD 2
ユーザー knshnbknshnb
提出日時 2020-04-25 17:17:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 1,884 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 210,432 KB
実行使用メモリ 15,652 KB
最終ジャッジ日時 2024-09-16 13:49:58
合計ジャッジ時間 9,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
11,008 KB
testcase_01 AC 107 ms
10,880 KB
testcase_02 AC 125 ms
15,524 KB
testcase_03 AC 15 ms
6,016 KB
testcase_04 AC 25 ms
8,272 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 39 ms
6,400 KB
testcase_08 AC 32 ms
5,888 KB
testcase_09 AC 133 ms
10,880 KB
testcase_10 AC 122 ms
10,368 KB
testcase_11 AC 131 ms
11,008 KB
testcase_12 AC 119 ms
10,368 KB
testcase_13 AC 212 ms
10,496 KB
testcase_14 AC 210 ms
10,624 KB
testcase_15 AC 195 ms
10,112 KB
testcase_16 AC 194 ms
10,240 KB
testcase_17 AC 196 ms
10,496 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 198 ms
10,112 KB
testcase_23 AC 142 ms
8,192 KB
testcase_24 AC 215 ms
10,368 KB
testcase_25 AC 176 ms
9,856 KB
testcase_26 AC 181 ms
10,112 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 1 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 1 ms
5,376 KB
testcase_38 AC 99 ms
15,652 KB
testcase_39 AC 120 ms
10,880 KB
testcase_40 AC 141 ms
8,192 KB
testcase_41 AC 132 ms
10,880 KB
testcase_42 AC 132 ms
11,008 KB
testcase_43 AC 142 ms
11,008 KB
testcase_44 AC 137 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>  // clang-format off
using Int = long long;
#define REP_(i, a_, b_, a, b, ...) for (Int i = (a), lim##i = (b); i < lim##i; i++)
#define REP(i, ...) REP_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__)
struct SetupIO { SetupIO() { std::cin.tie(nullptr), std::ios::sync_with_stdio(false), std::cout << std::fixed << std::setprecision(13); } } setup_io;
#ifndef _MY_DEBUG
#define dump(...)
#endif  // clang-format on

/**
 *    author:  knshnb
 *    created: Sat Apr 25 15:38:40 JST 2020
 **/

template <class T, class F> struct SlidingWindowAggregation {
    const F op;
    const T e;
    std::stack<std::pair<T, T>> st1, st2;  // {val, acc}
    SlidingWindowAggregation(F op_, T e_) : op(op_), e(e_) { st1.emplace(e, e), st2.emplace(e, e); }
    int size() { return st1.size() + st2.size() - 2; }
    void push(T x) {
        T acc = op(st2.top().second, x);
        st2.emplace(x, acc);
    }
    void pop() {
        assert(st1.size() > 1 || st2.size() > 1);
        if (st1.size() > 1) {
            st1.pop();
        } else {
            while (st2.size() > 2) {
                T acc = op(st1.top().second, st2.top().first);
                st1.emplace(st2.top().first, acc);
                st2.pop();
            }
            st2.pop();
        }
    }
    T fold_all() {
        return op(st1.top().second, st2.top().second);
    }
};
template <class T, class F> auto make_swag(F op, T e_) { return SlidingWindowAggregation<T, F>(op, e_); }

signed main() {
    Int n;
    std::cin >> n;
    std::vector<Int> a(n);
    REP(i, n) std::cin >> a[i];
    a.push_back(1);
    auto swag = make_swag<Int>([](Int x, Int y) { return std::gcd(x, y); }, 0);
    Int ans = 0, j = -1;
    REP(i, n) {
        while (swag.fold_all() != 1) {
            swag.push(a[++j]);
        }
        ans += n - j;
        swag.pop();
    }
    std::cout << ans << std::endl;
}
0