結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | stoq |
提出日時 | 2020-04-24 22:43:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,781 bytes |
コンパイル時間 | 2,710 ms |
コンパイル使用メモリ | 183,076 KB |
実行使用メモリ | 25,984 KB |
最終ジャッジ日時 | 2024-11-07 02:56:56 |
合計ジャッジ時間 | 10,630 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> using namespace std; using ll = long long int; ll temp; inline ll gcd(ll a, ll b) { if (a < b) swap(a, b); while (b != 0) { temp = b; b = a % b; a = temp; } return a; } ll a[500010]; template <typename T> class SegmentTree { public: int N; ll dat[2000010]; constexpr void init(int n) { N = 1; int sz = n; while (N < sz) N *= 2; for (int i = 0; i < N; ++i) dat[i + N - 1] = (i < sz ? a[i] : 0); for (int i = N - 2; i >= 0; --i) dat[i] = gcd(dat[i * 2 + 1], dat[i * 2 + 2]); } constexpr void update(int k, T a) { k += N - 1; dat[k] = a; while (k > 0) { k = (k - 1) / 2; dat[k] = gcd(dat[k * 2 + 1], dat[k * 2 + 2]); } } ll val_left, val_right; constexpr T query(int a, int b) { val_left = 0; val_right = 0; for (a += (N - 1), b += (N - 1); a < b; a >>= 1, b >>= 1) { if ((a & 1) == 0) { val_left = gcd(val_left, dat[a]); } if ((b & 1) == 0) { val_right = gcd(val_right, dat[--b]); } } return gcd(val_left, val_right); } }; int main() { /* cin.tie(0); ios::sync_with_stdio(false); cout << setprecision(30) << setiosflags(ios::fixed); */ ll n; cin >> n; int i; for (i = 0; i < n; i++) scanf("%lld", &a[i]); SegmentTree<ll> sg; sg.init(n); ll ans = (n + 1) * n / 2; int lo, hi, mi; for (i = 0; i < n; i++) { lo = i, hi = n + 1; while (hi - lo > 1) { mi = (lo + hi) / 2; if (sg.query(i, mi) > 1) lo = mi; else hi = mi; } ans -= (lo - i); } printf("%lld\n", ans); return 0; }