結果

問題 No.1036 Make One With GCD 2
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-04-24 22:39:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 1,345 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 209,356 KB
実行使用メモリ 89,196 KB
最終ジャッジ日時 2024-09-16 13:25:13
合計ジャッジ時間 17,447 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 479 ms
89,124 KB
testcase_01 AC 342 ms
89,084 KB
testcase_02 AC 444 ms
89,196 KB
testcase_03 AC 77 ms
43,648 KB
testcase_04 AC 127 ms
87,752 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 156 ms
43,904 KB
testcase_08 AC 135 ms
43,520 KB
testcase_09 AC 353 ms
89,000 KB
testcase_10 AC 330 ms
88,820 KB
testcase_11 AC 354 ms
89,148 KB
testcase_12 AC 332 ms
88,784 KB
testcase_13 AC 525 ms
88,880 KB
testcase_14 AC 531 ms
89,076 KB
testcase_15 AC 500 ms
88,764 KB
testcase_16 AC 506 ms
88,912 KB
testcase_17 AC 511 ms
88,916 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 4 ms
6,944 KB
testcase_22 AC 489 ms
88,856 KB
testcase_23 AC 378 ms
87,836 KB
testcase_24 AC 512 ms
88,844 KB
testcase_25 AC 474 ms
88,540 KB
testcase_26 AC 485 ms
88,656 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 423 ms
89,124 KB
testcase_39 AC 514 ms
89,076 KB
testcase_40 AC 382 ms
87,832 KB
testcase_41 AC 490 ms
89,088 KB
testcase_42 AC 491 ms
89,144 KB
testcase_43 AC 483 ms
89,056 KB
testcase_44 AC 491 ms
89,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <iostream>
#include <limits>
#include <numeric>
#include <type_traits>

using namespace std;

#define rep(i,n,m) for(ll (i)=(n);(i)<(m);(i)++)
#define rrep(i,n,m) for(ll (i)=(n);(i)>(m);(i)--)
using ll = long long;
const ll mod = 998244353;


template< typename T >
struct SparseTable {
  vector< vector< T > > st;
  vector< ll > lookup;

  SparseTable(const vector< T > &v) {
    ll b = 0;
    while((1 << b) <= v.size()) ++b;
    st.assign(b, vector< T >(1 << b));
    for(ll i = 0; i < v.size(); i++) {
      st[0][i] = v[i];
    }
    for(ll i = 1; i < b; i++) {
      for(ll j = 0; j + (1 << i) <= (1 << b); j++) {
        st[i][j] = gcd(st[i - 1][j], st[i - 1][j + (1 << (i - 1))]);
      }
    }
    lookup.resize(v.size() + 1);
    for(ll i = 2; i < (ll)lookup.size(); i++) {
      lookup[i] = lookup[i >> 1] + 1;
    }
  }

  inline T rmq(ll l, ll r) {
    ll b = lookup[r - l];
    return gcd(st[b][l], st[b][r - (1 << b)]);
  }
};

int main(){

    ll N;
    cin >> N;
    vector<ll> A(N);
    rep(i,0,N) cin >> A[i];

    SparseTable<ll> spt(A);

    ll l = 0 , ans = N*(N-1)/2 + N;
    rep(r,0,N){
        if (A[r] == 1) continue;

        while (spt.rmq(l,r+1) == 1) l++;
        ans -= (r-l+1);

        //cout << l << " " << r << " " << spt.rmq(l,r+1) << endl;
    }

    cout << ans << endl;
}
0