結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | 沙耶花 |
提出日時 | 2020-04-26 20:31:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 265 ms / 2,000 ms |
コード長 | 1,939 bytes |
コンパイル時間 | 2,438 ms |
コンパイル使用メモリ | 212,424 KB |
実行使用メモリ | 15,488 KB |
最終ジャッジ日時 | 2024-09-16 14:14:16 |
合計ジャッジ時間 | 10,216 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
7,808 KB |
testcase_01 | AC | 140 ms
7,228 KB |
testcase_02 | AC | 107 ms
15,452 KB |
testcase_03 | AC | 28 ms
5,376 KB |
testcase_04 | AC | 45 ms
5,888 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 51 ms
5,376 KB |
testcase_08 | AC | 41 ms
5,376 KB |
testcase_09 | AC | 176 ms
7,168 KB |
testcase_10 | AC | 165 ms
6,912 KB |
testcase_11 | AC | 179 ms
7,304 KB |
testcase_12 | AC | 165 ms
6,912 KB |
testcase_13 | AC | 265 ms
7,040 KB |
testcase_14 | AC | 262 ms
7,076 KB |
testcase_15 | AC | 250 ms
6,912 KB |
testcase_16 | AC | 251 ms
6,912 KB |
testcase_17 | AC | 257 ms
7,040 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 | 2 ms
5,376 KB |
testcase_22 | AC | 249 ms
6,912 KB |
testcase_23 | AC | 178 ms
5,888 KB |
testcase_24 | AC | 252 ms
7,040 KB |
testcase_25 | AC | 237 ms
6,784 KB |
testcase_26 | AC | 244 ms
6,784 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 | 1 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 1 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | AC | 101 ms
15,488 KB |
testcase_39 | AC | 140 ms
7,296 KB |
testcase_40 | AC | 183 ms
5,888 KB |
testcase_41 | AC | 170 ms
7,296 KB |
testcase_42 | AC | 171 ms
7,296 KB |
testcase_43 | AC | 158 ms
9,536 KB |
testcase_44 | AC | 165 ms
8,448 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define modulo 998244353 #define mod(mod_x) ((((long long)mod_x+modulo))%modulo) #define Inf 1000000000000000001 template <typename T,typename F> struct SWAG{ F func; T init_value; stack<pair<T,T>> X,Y; SWAG(F f,T iv):func(f){ init_value = iv; } void push_front(T x){ if(X.empty())X.push({x,x}); else X.push({x,func(x,X.top().second)}); } void push_back(T x){ if(Y.empty())Y.push({x,x}); else Y.push({x,func(Y.top().second,x)}); } void pop_front(){ if(X.empty()){ int n = Y.size(); stack<T> t; for(int i=0;i<n/2;i++){ t.push(Y.top().first); Y.pop(); } while(!Y.empty()){ push_front(Y.top().first); Y.pop(); } while(!t.empty()){ push_back(t.top()); t.pop(); } if(!X.empty())X.pop(); } else{ X.pop(); } } void pop_back(){ if(Y.empty()){ int n = X.size(); stack<T> t; for(int i=0;i<n/2;i++){ t.push(X.top().first); X.pop(); } while(!X.empty()){ push_back(X.top().first); X.pop(); } while(!t.empty()){ push_front(t.top()); t.pop(); } if(!Y.empty())Y.pop(); } else{ Y.pop(); } } T get(){ T ret = init_value; if(!X.empty())ret = func(ret,X.top().second); if(!Y.empty())ret = func(ret,Y.top().second); return ret; } }; int main(){ int N; scanf("%d",&N); vector<long long> A(N); for(int i=0;i<N;i++){ scanf("%lld",&A[i]); } auto f = [](long long a,long long b){ if(a==0)return b; if(b==0)return a; int s = __builtin_ctzll(a|b); a >>= __builtin_ctzll(a); while(b){ b>>=__builtin_ctzll(b); if(a>b)swap(a,b); b-=a; } return a<<s; }; SWAG<long long,decltype(f)> S(f,0); long long ans = 0; int r = 0; for(int i=0;i<N;i++){ while(S.get()!=1&&r!=N){ S.push_back(A[r]); r++; } if(S.get()!=1)break; ans += N+1-r; S.pop_front(); } printf("%lld\n",ans); return 0; }