結果

問題 No.1036 Make One With GCD 2
ユーザー ei1333333ei1333333
提出日時 2020-04-25 21:13:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 4,317 bytes
コンパイル時間 5,456 ms
コンパイル使用メモリ 208,224 KB
実行使用メモリ 15,624 KB
最終ジャッジ日時 2023-10-14 20:06:16
合計ジャッジ時間 12,716 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
7,484 KB
testcase_01 AC 251 ms
6,912 KB
testcase_02 AC 90 ms
15,624 KB
testcase_03 AC 14 ms
4,368 KB
testcase_04 AC 24 ms
5,728 KB
testcase_05 AC 2 ms
4,372 KB
testcase_06 AC 2 ms
4,372 KB
testcase_07 AC 66 ms
4,628 KB
testcase_08 AC 55 ms
4,372 KB
testcase_09 AC 237 ms
6,908 KB
testcase_10 AC 221 ms
6,456 KB
testcase_11 AC 241 ms
6,900 KB
testcase_12 AC 221 ms
6,652 KB
testcase_13 AC 331 ms
6,624 KB
testcase_14 AC 334 ms
6,960 KB
testcase_15 AC 313 ms
6,692 KB
testcase_16 AC 317 ms
6,648 KB
testcase_17 AC 325 ms
6,628 KB
testcase_18 AC 2 ms
4,372 KB
testcase_19 AC 3 ms
4,372 KB
testcase_20 AC 4 ms
4,372 KB
testcase_21 AC 3 ms
4,372 KB
testcase_22 AC 309 ms
6,452 KB
testcase_23 AC 227 ms
5,704 KB
testcase_24 AC 323 ms
6,720 KB
testcase_25 AC 295 ms
6,360 KB
testcase_26 AC 305 ms
6,424 KB
testcase_27 AC 1 ms
4,368 KB
testcase_28 AC 2 ms
4,372 KB
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 2 ms
4,372 KB
testcase_31 AC 2 ms
4,372 KB
testcase_32 AC 2 ms
4,372 KB
testcase_33 AC 2 ms
4,368 KB
testcase_34 AC 2 ms
4,372 KB
testcase_35 AC 2 ms
4,368 KB
testcase_36 AC 2 ms
4,372 KB
testcase_37 AC 2 ms
4,372 KB
testcase_38 AC 188 ms
15,620 KB
testcase_39 AC 183 ms
6,920 KB
testcase_40 AC 229 ms
5,692 KB
testcase_41 AC 326 ms
6,980 KB
testcase_42 AC 326 ms
7,148 KB
testcase_43 AC 321 ms
9,312 KB
testcase_44 AC 328 ms
8,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using int64 = long long;
const int mod = 1e9 + 7;
// const int mod = 998244353;

const int64 infll = (1LL << 62) - 1;
const int inf = (1 << 30) - 1;

struct IoSetup {
  IoSetup() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(10);
    cerr << fixed << setprecision(10);
  }
} iosetup;


template< typename T1, typename T2 >
ostream &operator<<(ostream &os, const pair< T1, T2 > &p) {
  os << p.first << " " << p.second;
  return os;
}

template< typename T1, typename T2 >
istream &operator>>(istream &is, pair< T1, T2 > &p) {
  is >> p.first >> p.second;
  return is;
}

template< typename T >
ostream &operator<<(ostream &os, const vector< T > &v) {
  for(int i = 0; i < (int) v.size(); i++) {
    os << v[i] << (i + 1 != v.size() ? " " : "");
  }
  return os;
}

template< typename T >
istream &operator>>(istream &is, vector< T > &v) {
  for(T &in : v) is >> in;
  return is;
}

template< typename T1, typename T2 >
inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }

template< typename T1, typename T2 >
inline bool chmin(T1 &a, T2 b) { return a > b && (a = b, true); }

template< typename T = int64 >
vector< T > make_v(size_t a) {
  return vector< T >(a);
}

template< typename T, typename... Ts >
auto make_v(size_t a, Ts... ts) {
  return vector< decltype(make_v< T >(ts...)) >(a, make_v< T >(ts...));
}

template< typename T, typename V >
typename enable_if< is_class< T >::value == 0 >::type fill_v(T &t, const V &v) {
  t = v;
}

template< typename T, typename V >
typename enable_if< is_class< T >::value != 0 >::type fill_v(T &t, const V &v) {
  for(auto &e : t) fill_v(e, v);
}

template< typename F >
struct FixPoint : F {
  FixPoint(F &&f) : F(forward< F >(f)) {}

  template< typename... Args >
  decltype(auto) operator()(Args &&... args) const {
    return F::operator()(*this, forward< Args >(args)...);
  }
};

template< typename F >
inline decltype(auto) MFP(F &&f) {
  return FixPoint< F >{forward< F >(f)};
}


template< typename SemiGroup, typename F >
struct SlidingWindowAggregation {

  struct Node {
    SemiGroup val, sum;

    Node(const SemiGroup &val, const SemiGroup &sum) : val(val), sum(sum) {}
  };

  SlidingWindowAggregation(F f) : f(f) {}


  const F f;
  stack< Node > front, back;

  bool empty() const {
    return front.empty() && back.empty();
  }

  size_t size() const {
    return front.size() + back.size();
  }

  SemiGroup fold_all() const {
    if(front.empty()) {
      return back.top().sum;
    } else if(back.empty()) {
      return front.top().sum;
    } else {
      return f(front.top().sum, back.top().sum);
    }
  }

  void push(const SemiGroup &x) {
    if(back.empty()) {
      back.emplace(x, x);
    } else {
      back.emplace(x, f(back.top().sum, x));
    }
  }

  void pop() {
    if(front.empty()) {
      front.emplace(back.top().val, back.top().val);
      back.pop();
      while(!back.empty()) {
        front.emplace(back.top().val, f(back.top().val, front.top().sum));
        back.pop();
      }
    }
    front.pop();
  }
};


template< typename T, typename F >
SlidingWindowAggregation< T, F > get_sliding_window_aggregation(F f) {
  return SlidingWindowAggregation< T, F >(f);
}


uint64_t gcd_impl(uint64_t n, uint64_t m) {
  constexpr uint64_t K = 5;
  for(int i = 0; i < 80; ++i) {
    uint64_t t = n - m;
    uint64_t s = n - m * K;
    bool q = t < m;
    bool p = t < m * K;
    n = q ? m : t;
    m = q ? t : m;
    if(m == 0) { return n; }
    n = p ? n : s;
  }
  return gcd_impl(m, n % m);
}

uint64_t gcd_pre(uint64_t n, uint64_t m) {
  for(int i = 0; i < 4; ++i) {
    uint64_t t = n - m;
    bool q = t < m;
    n = q ? m : t;
    m = q ? t : m;
    if(m == 0) { return n; }
  }
  return gcd_impl(n, m);
}

uint64_t gcd_fast(uint64_t n, uint64_t m) {
  return n > m ? gcd_pre(n, m) : gcd_pre(m, n);
}


int main() {
  int N;
  cin >> N;
  vector< uint64_t > A(N);
  cin >> A;
  auto SWAG = get_sliding_window_aggregation< uint64_t >(gcd_fast);
  vector< int > ans;
  int r = 0;
  uint64_t ret = 0;
  for(int i = 0; i < N; i++) {
    while(r < N && (SWAG.empty() || SWAG.fold_all() > 1)) {
      SWAG.push(A[r++]);
    }
    if(SWAG.fold_all() == 1) ret += N - r + 1;
    SWAG.pop();
  }
  cout << ret << endl;
}




0