結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | simkaren |
提出日時 | 2020-05-30 15:57:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,896 bytes |
コンパイル時間 | 3,443 ms |
コンパイル使用メモリ | 201,112 KB |
実行使用メモリ | 25,856 KB |
最終ジャッジ日時 | 2024-11-07 18:43:43 |
合計ジャッジ時間 | 11,382 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 optimize("O3", "unroll-loops") #include <bits/stdc++.h> using namespace std; #define ll long long #define ld long double inline ll gcd(ll a, ll b){ if (b > a) return gcd(b, a); if (b == 0) return a; return gcd(b, a % b); } template<typename T> struct SegmentTree { private: int sz, n; vector<T> data; function<T(T, T)> f; T identity_element; public: /* constructor */ SegmentTree( vector<T>& v, // initial data T identity_element, // identity element function<T(T, T)> f // operation ) { sz = v.size(); n = 1; while (n < sz) n <<= 1; this->f = f; this->identity_element = identity_element; data.resize(2 * n - 1, identity_element); for (int i = 0; i < sz; ++i) data[i + n - 1] = v[i]; for (int i = n - 2; i >= 0; --i) data[i] = f(data[2 * i + 1], data[2 * i + 2]); } /* update query */ void update(int idx, const T val) { idx += n - 1; data[idx] = val; while (idx) { idx = (idx - 1) >> 1; data[idx] = f(data[2 * idx + 1], data[2 * idx + 2]); } } /* get query */ T get(int left, int right, int k = 0, int l = 0, int r = -1) { if (r < 0) r = n; if (r <= left || right <= l) return identity_element; if (left <= l && r <= right) return data[k]; T val_l = get(left, right, 2 * k + 1, l, (l + r) / 2); T val_r = get(left, right, 2 * k + 2, (l + r) / 2, r); return f(val_l, val_r); } }; int main(void){ int N; scanf("%d", &N); vector<ll> A(N); for (int i = 0; i < N; ++i) scanf("%lld", &(A[i])); SegmentTree<ll> seg( A, 0LL, [](ll a, ll b){ return gcd(a, b); } ); ll res = 0; for (int i = 0; i < N; ++i){ if (seg.get(i, N) > 1) continue; if (A[i] == 1){ res += N - i; continue; } int ng = i + 1, ok = N; while (ok - ng > 1){ int mid = (ok + ng) / 2; if (seg.get(i, mid) > 1) ng = mid; else ok = mid; } res += N - ok + 1; } cout << res << endl; return 0; }