結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | minato |
提出日時 | 2020-05-01 21:28:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 472 ms / 2,000 ms |
コード長 | 2,431 bytes |
コンパイル時間 | 3,738 ms |
コンパイル使用メモリ | 207,376 KB |
実行使用メモリ | 15,636 KB |
最終ジャッジ日時 | 2024-09-16 14:18:33 |
合計ジャッジ時間 | 14,716 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 116 ms
7,756 KB |
testcase_01 | AC | 104 ms
7,140 KB |
testcase_02 | AC | 122 ms
15,628 KB |
testcase_03 | AC | 19 ms
6,940 KB |
testcase_04 | AC | 32 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 37 ms
6,940 KB |
testcase_08 | AC | 30 ms
6,944 KB |
testcase_09 | AC | 279 ms
7,020 KB |
testcase_10 | AC | 262 ms
6,944 KB |
testcase_11 | AC | 282 ms
7,088 KB |
testcase_12 | AC | 257 ms
6,944 KB |
testcase_13 | AC | 472 ms
6,940 KB |
testcase_14 | AC | 469 ms
6,992 KB |
testcase_15 | AC | 442 ms
6,944 KB |
testcase_16 | AC | 439 ms
6,944 KB |
testcase_17 | AC | 461 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 3 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 437 ms
6,940 KB |
testcase_23 | AC | 321 ms
6,940 KB |
testcase_24 | AC | 451 ms
6,940 KB |
testcase_25 | AC | 413 ms
6,940 KB |
testcase_26 | AC | 430 ms
6,944 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,940 KB |
testcase_29 | AC | 1 ms
6,940 KB |
testcase_30 | AC | 1 ms
6,940 KB |
testcase_31 | AC | 1 ms
6,940 KB |
testcase_32 | AC | 1 ms
6,944 KB |
testcase_33 | AC | 2 ms
6,940 KB |
testcase_34 | AC | 2 ms
6,940 KB |
testcase_35 | AC | 1 ms
6,940 KB |
testcase_36 | AC | 2 ms
6,940 KB |
testcase_37 | AC | 2 ms
6,940 KB |
testcase_38 | AC | 117 ms
15,636 KB |
testcase_39 | AC | 115 ms
7,108 KB |
testcase_40 | AC | 318 ms
6,944 KB |
testcase_41 | AC | 439 ms
7,168 KB |
testcase_42 | AC | 436 ms
7,236 KB |
testcase_43 | AC | 372 ms
9,380 KB |
testcase_44 | AC | 409 ms
8,228 KB |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; using ll = long long; using ull = unsigned long long; using pii = pair<int, int>; using pll = pair<long long, long long>; #define rep(i, n) for(int i = 0; i < (n); ++i) #define all(x) (x).begin(),(x).end() constexpr char ln = '\n'; constexpr long long MOD = 1000000007LL; //constexpr long long MOD = 998244353LL; template<class T, class U> inline bool chmax(T &a, U b) { if (a < b) { a = b; return true;} return false; } template<class T, class U> inline bool chmin(T &a, U b) { if (a > b) { a = b; return true;} return false; } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// template<typename T, typename Monoid> struct SlidingWindowAggregation { T unity; Monoid merge; stack<pair<T, T>> front, back; SlidingWindowAggregation(Monoid f, T id) : merge(f), unity(id) {} bool empty() const {return front.empty() and back.empty();} int size() const {return front.size() + back.size();} T fold_all() const { T vf = front.empty() ? unity : front.top().second; T vb = back.empty() ? unity : back.top().second; return merge(vf,vb); } void emplace(const T &val) { if (back.empty()) { back.emplace(val,val); } else { back.emplace(val,merge(back.top().second,val)); } } void pop() { assert(!empty()); if (front.empty()) { front.emplace(back.top().first,back.top().first); back.pop(); while (!back.empty()) { front.emplace(back.top().first,merge(front.top().second,back.top().first)); back.pop(); } } front.pop(); } }; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); ll N; cin >> N; vector<ll> A(N); rep(i,N) cin >> A[i]; auto f=[](ll a, ll b) {return __gcd(a,b);}; const ll id = 0; SlidingWindowAggregation<ll, decltype(f)> SWAG(f,id); int r = 0; ll ans = N*(N+1)/2; rep(l,N) { while (r < N and SWAG.fold_all() != 1) { SWAG.emplace(A[r]); r++; } ans -= SWAG.fold_all() == 1 ? r-l-1 : r-l; SWAG.pop(); } cout << ans << ln; }