結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | recososo |
提出日時 | 2020-04-25 13:43:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,191 ms / 2,000 ms |
コード長 | 2,070 bytes |
コンパイル時間 | 1,505 ms |
コンパイル使用メモリ | 170,868 KB |
実行使用メモリ | 15,360 KB |
最終ジャッジ日時 | 2024-09-16 13:42:21 |
合計ジャッジ時間 | 17,674 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 607 ms
15,224 KB |
testcase_01 | AC | 183 ms
15,304 KB |
testcase_02 | AC | 259 ms
15,232 KB |
testcase_03 | AC | 50 ms
8,816 KB |
testcase_04 | AC | 88 ms
13,948 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 73 ms
8,960 KB |
testcase_08 | AC | 59 ms
8,704 KB |
testcase_09 | AC | 302 ms
15,232 KB |
testcase_10 | AC | 283 ms
14,948 KB |
testcase_11 | AC | 307 ms
15,360 KB |
testcase_12 | AC | 273 ms
14,848 KB |
testcase_13 | AC | 415 ms
15,096 KB |
testcase_14 | AC | 425 ms
15,200 KB |
testcase_15 | AC | 436 ms
14,976 KB |
testcase_16 | AC | 452 ms
14,956 KB |
testcase_17 | AC | 453 ms
15,104 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 3 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 3 ms
5,376 KB |
testcase_22 | AC | 415 ms
14,848 KB |
testcase_23 | AC | 297 ms
13,952 KB |
testcase_24 | AC | 423 ms
14,976 KB |
testcase_25 | AC | 382 ms
14,720 KB |
testcase_26 | AC | 423 ms
14,808 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | AC | 441 ms
15,360 KB |
testcase_39 | AC | 1,191 ms
15,360 KB |
testcase_40 | AC | 297 ms
13,824 KB |
testcase_41 | AC | 839 ms
15,360 KB |
testcase_42 | AC | 851 ms
15,220 KB |
testcase_43 | AC | 814 ms
15,300 KB |
testcase_44 | AC | 838 ms
15,328 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } const ll INF=1LL<<60; const int inf=1<<30; const int mod=1e9+7; const int MOD=998244353; ll gcd(ll a,ll b){ return (b?gcd(b,a%b):a); } 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 n_=v.size(); init(n_); for(int i=0;i<n_;i++) dat[n+i]=v[i]; for(int i=n-1;i;i--) dat[i]=f(dat[(i<<1)|0],dat[(i<<1)|1]); } void update(int k,const E &x){ k += n; dat[k] = g(dat[k], x); while(k>>=1) dat[k]=f(dat[(k<<1)|0],dat[(k<<1)|1]); } T operator [](int k) const { return dat[k+n]; } // [a,b) T query(int a,int b) const { 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); ll n;cin >> n; using T = ll; // type T using E = ll; // type E auto f = [](T a, T b){ // return type T value return gcd(a,b); }; auto g = [](T a, E b){ // return type T value return b; // return b; }; T ti = 0; // identify element SegmentTree<T,E,decltype(f),decltype(g)> seg(f,g,ti); vector<ll> a(n); seg.build(a); for(int i=0;i<n;i++){ ll t;cin >> t; seg.update(i,t); } int r=0; ll ans=0; for(int i=0;i<n;i++){ while(r<n&&seg.query(i,r+1)!=1){ r++; } ans+=n-r; } cout << ans << endl; }