結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | stoq |
提出日時 | 2020-04-24 22:16:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,250 bytes |
コンパイル時間 | 1,955 ms |
コンパイル使用メモリ | 176,040 KB |
実行使用メモリ | 26,112 KB |
最終ジャッジ日時 | 2024-11-07 02:35:14 |
合計ジャッジ時間 | 9,997 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 region Macros #include <bits/stdc++.h> using namespace std; //#include <boost/multiprecision/cpp_int.hpp> //using multiInt = boost::multiprecision::cpp_int; using ll = long long int; using ld = long double; using pii = pair<int, int>; using pll = pair<ll, ll>; using pld = pair<ld, ld>; template <typename Q_type> using smaller_queue = priority_queue<Q_type, vector<Q_type>, greater<Q_type>>; constexpr int MOD_TYPE = 1; constexpr ll MOD = (MOD_TYPE == 1 ? (ll)(1e9 + 7) : 998244353); constexpr int INF = (int)1e9; constexpr ll LINF = (ll)4e18; constexpr ld PI = acos(-1.0); constexpr ld EPS = 1e-11; constexpr int Dx[] = {0, 0, -1, 1, -1, 1, -1, 1, 0}; constexpr int Dy[] = {1, -1, 0, 0, -1, -1, 1, 1, 0}; #define REP(i, m, n) for (ll i = m; i < (ll)(n); ++i) #define rep(i, n) REP(i, 0, n) #define MP make_pair #define MT make_tuple #define YES(n) cout << ((n) ? "YES" : "NO") << "\n" #define Yes(n) cout << ((n) ? "Yes" : "No") << "\n" #define possible(n) cout << ((n) ? "possible" : "impossible") << "\n" #define Possible(n) cout << ((n) ? "Possible" : "Impossible") << "\n" #define Yay(n) cout << ((n) ? "Yay!" : ":(") << "\n" #define all(v) v.begin(), v.end() #define NP(v) next_permutation(all(v)) #define dbg(x) cerr << #x << ":" << x << "\n"; #pragma endregion template <typename T> class SegmentTree { private: using Fn = function<T(T, T)>; int N; vector<T> dat; T unit; Fn func; public: SegmentTree() {} SegmentTree(int n_, Fn func_, T unit_) { init(n_, func_, unit_); } SegmentTree(vector<T> &v, Fn func_, T unit_) { init(v, func_, unit_); } void init(int n_, Fn func_, T unit_) { func = func_, unit = unit_; N = 1; while (N < n_) N *= 2; dat.assign(2 * N - 1, unit); } void init(vector<T> &v, Fn func_, T unit_) { func = func_, unit = unit_; N = 1; int sz = v.size(); while (N < sz) N *= 2; dat.resize(2 * N - 1); for (int i = 0; i < N; ++i) dat[i + N - 1] = (i < sz ? v[i] : unit); for (int i = N - 2; i >= 0; --i) dat[i] = func(dat[i * 2 + 1], dat[i * 2 + 2]); } void update(int k, T a) { k += N - 1; dat[k] = a; while (k > 0) { k = (k - 1) / 2; dat[k] = func(dat[k * 2 + 1], dat[k * 2 + 2]); } } T query(int a, int b, int k = 0, int l = 0, int r = -1) { if (r < 0) r = N; if (r <= a || b <= l) return unit; if (a <= l && r <= b) return dat[k]; else { T vl = query(a, b, k * 2 + 1, l, (l + r) / 2); T vr = query(a, b, k * 2 + 2, (l + r) / 2, r); return func(vl, vr); } } }; inline ll gcd(ll a, ll b) { if (a < b) swap(a, b); return b == 0 ? a : gcd(b, a % b); } void solve() { int n; cin >> n; vector<ll> a(n); rep(i, n) scanf("%lld", &a[i]); SegmentTree<ll> sg(a, gcd, 0); ll ans = (n + 1) * n / 2; int lo, hi; rep(i, n) { lo = i, hi = n + 1; while (hi - lo > 1) { int mi = (lo + hi) / 2; if (sg.query(i, mi) > 1) lo = mi; else hi = mi; } ans -= (lo - i); } printf("%lld\n", ans); } int main() { /* cin.tie(0); ios::sync_with_stdio(false); cout << setprecision(30) << setiosflags(ios::fixed); */ solve(); return 0; }