結果
問題 |
No.1036 Make One With GCD 2
|
ユーザー |
![]() |
提出日時 | 2020-04-28 18:46:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 1,300 ms / 2,000 ms |
コード長 | 2,600 bytes |
コンパイル時間 | 1,413 ms |
コンパイル使用メモリ | 111,100 KB |
実行使用メモリ | 19,200 KB |
最終ジャッジ日時 | 2024-09-16 14:15:54 |
合計ジャッジ時間 | 17,630 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 41 |
ソースコード
#pragma GCC optimize("O3") #include <iostream> #include <iomanip> #include <cstdio> #include <string> #include <cstring> #include <deque> #include <list> #include <queue> #include <stack> #include <vector> #include <utility> #include <algorithm> #include <map> #include <set> #include <complex> #include <cmath> #include <limits> #include <cfloat> #include <climits> #include <ctime> #include <cassert> #include <numeric> #include <fstream> #include <functional> #include <bitset> using namespace std; using ll = long long; using P = pair<int, int>; using T = tuple<int, int, int>; template <class T> inline T chmax(T &a, const T b) {return a = (a < b) ? b : a;} template <class T> inline T chmin(T &a, const T b) {return a = (a > b) ? b : a;} constexpr int MOD = 1e9 + 7; constexpr int inf = 1e9; constexpr long long INF = 1e18; #define all(a) (a).begin(), (a).end() int dx[] = {1, 0, -1, 0}; int dy[] = {0, 1, 0, -1}; // refer to http://beet-aizu.hatenablog.com/entry/2019/03/12/171221 template <typename T, typename E, typename F, typename G> struct SegmentTree{ int n; F f; G g; T ti; vector<T> dat; SegmentTree(){}; SegmentTree(F f, G g, T ti) : f(f), g(g), ti(ti){} void init(int n_){ n = 1; while(n < n_) n <<= 1; dat.assign(n << 1, ti); } void build(const vector<T> &v){ int sz = v.size(); init(sz); for(int i=0; i<sz; i++) dat[n + i] = v[i]; for(int i=n-1; i>=0; i--) dat[i] = f(dat[(i << 1) | 0], dat[(i << 1) | 1]); } void set_val(int k, T x){ k += n; dat[k] = g(dat[k], x); while(k >>= 1) dat[k] = f(dat[(k << 1) | 0], dat[(k << 1) | 1]); } T query(int a,int b){ T vl = ti, vr = ti; for(int l=a+n,r=b+n;l<r;l>>=1,r>>=1) { if(l & 1) vl = f(vl, dat[l++]); if(r & 1) vr = f(dat[--r], vr); } return f(vl, vr); } }; int main(){ cin.tie(0); ios::sync_with_stdio(false); using T = ll; using E = ll; auto f = [](T a, T b){ return __gcd(a, b); }; auto g = [](T a, E b){ return b; }; T ti = 0; SegmentTree<T, E, decltype(f), decltype(g)> seg(f, g, ti); int n; cin>>n; vector<ll> a(n); for(int i=0; i<n; i++) cin>>a[i]; seg.build(vector<ll>(n, 0)); for(int i=0; i<n; i++) seg.set_val(i, a[i]); ll ans = 0; int r = 0; for(int l=0; l<n; l++){ if(r < l) r = l; while(r < n && seg.query(l, r + 1) != 1) r++; ans += (n - r); } cout << ans << endl; return 0; }