結果

問題 No.1036 Make One With GCD 2
ユーザー HaarHaar
提出日時 2020-04-26 19:18:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,262 ms / 2,000 ms
コード長 1,966 bytes
コンパイル時間 2,451 ms
コンパイル使用メモリ 210,432 KB
実行使用メモリ 99,036 KB
最終ジャッジ日時 2024-11-17 18:57:15
合計ジャッジ時間 33,777 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,175 ms
98,884 KB
testcase_01 AC 856 ms
98,816 KB
testcase_02 AC 963 ms
98,900 KB
testcase_03 AC 222 ms
38,464 KB
testcase_04 AC 418 ms
65,408 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 333 ms
43,904 KB
testcase_08 AC 265 ms
36,504 KB
testcase_09 AC 889 ms
96,764 KB
testcase_10 AC 784 ms
90,112 KB
testcase_11 AC 864 ms
98,600 KB
testcase_12 AC 791 ms
91,008 KB
testcase_13 AC 1,016 ms
94,428 KB
testcase_14 AC 1,025 ms
95,396 KB
testcase_15 AC 962 ms
89,552 KB
testcase_16 AC 973 ms
90,292 KB
testcase_17 AC 994 ms
92,952 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 5 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 949 ms
88,448 KB
testcase_23 AC 689 ms
65,920 KB
testcase_24 AC 985 ms
92,032 KB
testcase_25 AC 894 ms
84,112 KB
testcase_26 AC 940 ms
86,912 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 918 ms
98,928 KB
testcase_39 AC 1,166 ms
98,944 KB
testcase_40 AC 695 ms
66,024 KB
testcase_41 AC 1,207 ms
98,936 KB
testcase_42 AC 1,182 ms
99,036 KB
testcase_43 AC 1,262 ms
98,904 KB
testcase_44 AC 1,257 ms
98,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>


template <typename Semilattice>
class SparseTable{
  using value_type = typename Semilattice::value_type;
  
  std::vector<std::vector<value_type>> a;
  std::vector<int> log_table;
  
public:
  SparseTable(const std::vector<value_type> &v){
    int n = v.size();
    int logn = 0;
    while((1 << logn) <= n) ++logn;
    
    a.assign(n, std::vector<value_type>(logn));
    for(int i = 0; i < n; ++i) a[i][0] = v[i];
    for(int j = 1; j < logn; ++j){
      for(int i = 0; i < n; ++i){
        a[i][j] = Semilattice::op(a[i][j-1], a[std::min<int>(n-1, i+(1<<(j-1)))][j-1]);
      }
    }

    log_table.assign(n+1, 0);
    for(int i = 2; i < n+1; ++i) log_table[i] = log_table[i>>1] + 1;
  }
  
  inline value_type get(int s, int t) const { // [s,t)
    int k = log_table[t-s];
    return Semilattice::op(a[s][k], a[t-(1<<k)][k]);
  }

  inline value_type get(std::vector<std::pair<int,int>> st) const {
    value_type ret;
    bool t = true;

    for(const auto &p : st){
      if(p.first < p.second){
        if(t){
          ret = get(p.first, p.second);
          t = false;
        }else{
          ret = Semilattice::op(ret, get(p.first, p.second));
        }
      }
    }

    return ret;
  }
};


template <typename T>
struct GcdMonoid{
  using value_type = T;
  constexpr inline static value_type id(){return 0;}
  constexpr inline static value_type op(const value_type &a, const value_type &b){return std::gcd(a, b);}
};

int main(){
  int N;

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

    SparseTable<GcdMonoid<int64_t>> s(A);

    int64_t ans = 0;

    for(int l = 0; l < N; ++l){
      int lb = l, ub = N+1;
      while(abs(lb-ub) > 1){
        int mid = (lb + ub) / 2;

        if(s.get(l, mid) == 1){
          ub = mid;
        }else{
          lb = mid;
        }
      }
      
      ans += (N - lb);
    }

    std::cout << ans << "\n";
  }

  return 0;
}
0