結果

問題 No.1036 Make One With GCD 2
ユーザー 👑 emthrmemthrm
提出日時 2020-04-25 20:30:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 2,220 bytes
コンパイル時間 2,623 ms
コンパイル使用メモリ 211,964 KB
実行使用メモリ 87,304 KB
最終ジャッジ日時 2024-11-07 19:05:13
合計ジャッジ時間 16,920 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
87,172 KB
testcase_01 AC 353 ms
87,152 KB
testcase_02 AC 316 ms
87,096 KB
testcase_03 AC 50 ms
32,768 KB
testcase_04 AC 86 ms
57,704 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 124 ms
37,376 KB
testcase_08 AC 98 ms
30,976 KB
testcase_09 AC 366 ms
85,204 KB
testcase_10 AC 369 ms
79,488 KB
testcase_11 AC 374 ms
87,008 KB
testcase_12 AC 373 ms
80,156 KB
testcase_13 AC 442 ms
83,116 KB
testcase_14 AC 448 ms
84,192 KB
testcase_15 AC 422 ms
78,952 KB
testcase_16 AC 426 ms
79,604 KB
testcase_17 AC 435 ms
81,996 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 3 ms
6,816 KB
testcase_20 AC 4 ms
6,820 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 413 ms
78,100 KB
testcase_23 AC 324 ms
58,108 KB
testcase_24 AC 430 ms
81,104 KB
testcase_25 AC 392 ms
74,160 KB
testcase_26 AC 433 ms
76,828 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 3 ms
6,820 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 311 ms
87,092 KB
testcase_39 AC 519 ms
87,304 KB
testcase_40 AC 324 ms
58,112 KB
testcase_41 AC 532 ms
87,128 KB
testcase_42 AC 525 ms
87,092 KB
testcase_43 AC 545 ms
87,088 KB
testcase_44 AC 567 ms
87,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
const int INF = 0x3f3f3f3f;
const ll LINF = 0x3f3f3f3f3f3f3f3fLL;
const double EPS = 1e-8;
const int MOD = 1000000007;
// const int MOD = 998244353;
const int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
const int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    cout << fixed << setprecision(20);
  }
} iosetup;

template <typename MeetSemilattice>
struct SparseTable {
  using Fn = function<MeetSemilattice(MeetSemilattice, MeetSemilattice)>;
 
  SparseTable() {}
 
  SparseTable(const vector<MeetSemilattice> &a, Fn fn, MeetSemilattice UNITY = 0) { init(a, fn); }
 
  void init(const vector<MeetSemilattice> &a, Fn fn_) {
    fn = fn_;
    int n = a.size(), table_h = 0;
    lg.assign(n + 1, 0);
    FOR(i, 2, n + 1) lg[i] = lg[i >> 1] + 1;
    while ((1 << table_h) <= n) ++table_h;
    dat.assign(table_h, vector<MeetSemilattice>(n));
    REP(j, n) dat[0][j] = a[j];
    FOR(i, 1, table_h) for (int j = 0; j + (1 << i) <= n; ++j) {
      dat[i][j] = fn(dat[i - 1][j], dat[i - 1][j + (1 << (i - 1))]);
    }
  }
 
  MeetSemilattice query(int left, int right) {
    assert(left < right);
    int h = lg[right - left];
    return fn(dat[h][left], dat[h][right - (1 << h)]);
  }
 
private:
  Fn fn;
  vector<int> lg;
  vector<vector<MeetSemilattice> > dat;
};

int main() {
  int n; cin >> n;
  vector<ll> a(n); REP(i, n) cin >> a[i];
  SparseTable<ll> st(a, [](ll a, ll b) { return gcd(a, b); });
  ll ans = 0;
  REP(i, n) {
    if (a[i] == 1) {
      ans += n - i;
      continue;
    }
    int lb = i, ub = n;
    while (ub - lb > 1) {
      int mid = (lb + ub) >> 1;
      (st.query(i, mid + 1) > 1 ? lb : ub) = mid;
    }
    ans += n - ub;
  }
  cout << ans << '\n';
  return 0;
}
0