結果

問題 No.1036 Make One With GCD 2
ユーザー tko919tko919
提出日時 2020-04-25 20:20:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 1,848 bytes
コンパイル時間 1,808 ms
コンパイル使用メモリ 176,884 KB
実行使用メモリ 23,388 KB
最終ジャッジ日時 2024-09-16 13:55:32
合計ジャッジ時間 13,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
8,616 KB
testcase_01 AC 105 ms
7,436 KB
testcase_02 AC 130 ms
23,264 KB
testcase_03 AC 21 ms
6,944 KB
testcase_04 AC 35 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 37 ms
6,940 KB
testcase_08 AC 31 ms
6,940 KB
testcase_09 AC 285 ms
7,132 KB
testcase_10 AC 269 ms
6,940 KB
testcase_11 AC 290 ms
7,376 KB
testcase_12 AC 264 ms
7,004 KB
testcase_13 AC 476 ms
7,072 KB
testcase_14 AC 479 ms
7,192 KB
testcase_15 AC 458 ms
6,992 KB
testcase_16 AC 457 ms
6,944 KB
testcase_17 AC 472 ms
7,020 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 444 ms
6,944 KB
testcase_23 AC 331 ms
6,940 KB
testcase_24 AC 465 ms
6,976 KB
testcase_25 AC 422 ms
6,944 KB
testcase_26 AC 439 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 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 128 ms
23,388 KB
testcase_39 AC 123 ms
7,280 KB
testcase_40 AC 329 ms
6,940 KB
testcase_41 AC 448 ms
7,352 KB
testcase_42 AC 451 ms
7,456 KB
testcase_43 AC 387 ms
10,468 KB
testcase_44 AC 426 ms
8,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;

//template
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(a);i>(b);i--)
#define ALL(v) (v).begin(),(v).end()
typedef long long int ll;
const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12;
void tostr(ll x,string& res){while(x)res+=('0'+(x%10)),x/=10; reverse(ALL(res)); return;}
template<class T> inline bool chmax(T& a,T b){ if(a<b){a=b;return 1;}return 0; }
template<class T> inline bool chmin(T& a,T b){ if(a>b){a=b;return 1;}return 0; }
//template end

template<class M>struct SWAG{
   using F=function<M(M,M)>; F f; M m0;
   stack<M> fval,bval; vector<M> fsum,bsum;
   SWAG(const F _f,M _m0):f(_f),m0(_m0){}
   M fold(){
      if(fsum.empty()){
         if(bsum.empty())return m0;
         return bsum.back();
      }else{
         if(bsum.empty())return fsum.back();
         else return f(fsum.back(),bsum.back());
      }
   }
   void push(M x){
      bval.push(x);
      if(bsum.empty())bsum.push_back(x);
      else{
         M y=f(bsum.back(),x);
         bsum.push_back(y);
      }
   }
   void pop(){
      if(fval.empty()){
         bsum.clear();
         while(!bval.empty()){
            auto x=bval.top(); bval.pop();
            fval.push(x);
            if(fsum.empty())fsum.push_back(x);
            else{
               M y=f(x,fsum.back());
               fsum.push_back(y);
            }
         }
      }
      fval.pop(); fsum.pop_back();
   }
};

int main(){
   int n; scanf("%d",&n);
   vector<ll> a(n); rep(i,0,n)scanf("%lld",&a[i]);
   SWAG<ll> swag([](ll a,ll b){return __gcd(a,b);},0);
   ll rb=0,res=0;
   rep(i,0,n){
      if(i)swag.pop();
      while(rb<n and swag.fold()!=1){swag.push(a[rb]); rb++;}
      if(swag.fold()==1)res+=n-rb+1;
   } printf("%lld\n",res);
   return 0;
}
0