結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | rodea |
提出日時 | 2020-04-28 19:06:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,059 ms / 2,000 ms |
コード長 | 2,394 bytes |
コンパイル時間 | 1,632 ms |
コンパイル使用メモリ | 124,356 KB |
実行使用メモリ | 19,200 KB |
最終ジャッジ日時 | 2024-09-16 14:16:17 |
合計ジャッジ時間 | 19,628 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 632 ms
19,200 KB |
testcase_01 | AC | 353 ms
19,200 KB |
testcase_02 | AC | 225 ms
19,072 KB |
testcase_03 | AC | 64 ms
10,112 KB |
testcase_04 | AC | 114 ms
16,384 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 111 ms
10,496 KB |
testcase_08 | AC | 91 ms
9,984 KB |
testcase_09 | AC | 474 ms
18,944 KB |
testcase_10 | AC | 442 ms
18,560 KB |
testcase_11 | AC | 484 ms
19,200 KB |
testcase_12 | AC | 445 ms
18,432 KB |
testcase_13 | AC | 613 ms
18,816 KB |
testcase_14 | AC | 619 ms
18,816 KB |
testcase_15 | AC | 579 ms
18,432 KB |
testcase_16 | AC | 584 ms
18,432 KB |
testcase_17 | AC | 602 ms
18,688 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 3 ms
5,376 KB |
testcase_20 | AC | 4 ms
5,376 KB |
testcase_21 | AC | 3 ms
5,376 KB |
testcase_22 | AC | 572 ms
18,432 KB |
testcase_23 | AC | 422 ms
16,512 KB |
testcase_24 | AC | 596 ms
18,560 KB |
testcase_25 | AC | 542 ms
17,920 KB |
testcase_26 | AC | 561 ms
18,176 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 | 2 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | AC | 477 ms
19,200 KB |
testcase_39 | AC | 1,059 ms
19,200 KB |
testcase_40 | AC | 421 ms
16,512 KB |
testcase_41 | AC | 865 ms
19,072 KB |
testcase_42 | AC | 857 ms
19,072 KB |
testcase_43 | AC | 789 ms
19,200 KB |
testcase_44 | AC | 868 ms
19,072 KB |
ソースコード
#pragma GCC optimize("O3") #include <iostream> #include <iomanip> #include <cstdio> #include <string> #include <cstring> #include <deque> #include <list> #include <queue> #include <stack> #include <vector> #include <utility> #include <algorithm> #include <map> #include <set> #include <complex> #include <cmath> #include <limits> #include <cfloat> #include <climits> #include <ctime> #include <cassert> #include <numeric> #include <fstream> #include <functional> #include <bitset> using namespace std; using ll = long long; using P = pair<int, int>; using T = tuple<int, int, int>; template <class T> inline T chmax(T &a, const T b) {return a = (a < b) ? b : a;} template <class T> inline T chmin(T &a, const T b) {return a = (a > b) ? b : a;} constexpr int MOD = 1e9 + 7; constexpr int inf = 1e9; constexpr long long INF = 1e18; #define all(a) (a).begin(), (a).end() int dx[] = {1, 0, -1, 0}; int dy[] = {0, 1, 0, -1}; template<typename T> struct SegmentTree{ private: using Func = function<T(T, T)>; int n; vector<T> node; Func func; T init_v; public: SegmentTree(vector<T> v, Func _func, T _init_v){ func = _func, init_v = _init_v; int sz = v.size(); n = 1; while(n < sz) n *= 2; node.resize(2 * n, init_v); for(int i=0; i<sz; i++) node[i+n-1] = v[i]; for(int i=n-2; i>=0; i--) node[i] = func(node[i*2+1], node[i*2+2]); } void update(int idx, T val){ idx += n - 1; node[idx] = val; while(idx > 0){ idx = (idx - 1) / 2; node[idx] = func(node[idx*2+1], node[idx*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 init_v; if (a <= l && r <= b) return node[k]; T lv = query(a, b, k * 2 + 1, l, (l + r) / 2); T rv = query(a, b, k * 2 + 2, (l + r) / 2, r); return func(lv, rv); } }; int main(){ cin.tie(0); ios::sync_with_stdio(false); int n; cin>>n; vector<ll> a(n); for(int i=0; i<n; i++) cin>>a[i]; SegmentTree<ll> seg(a, [](const auto x, const auto y){return __gcd(x, y);}, 0); ll ans = 0; int r = 0; for(int l=0; l<n; l++){ if(r < l) r = l; while(r < n && seg.query(l, r + 1) != 1) r++; ans += (n - r); } cout << ans << endl; return 0; }