結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | Rho |
提出日時 | 2020-04-24 21:52:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,245 bytes |
コンパイル時間 | 3,510 ms |
コンパイル使用メモリ | 207,204 KB |
実行使用メモリ | 29,060 KB |
最終ジャッジ日時 | 2024-11-07 02:13:47 |
合計ジャッジ時間 | 11,716 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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("avx") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include "bits/stdc++.h" #pragma warning(disable:4996) using namespace std; #define int long long #define rep(i,n) for(int i=0;i<n;i++) int a[500006]; int gcd(int a, int b) { if (!b)return a; return gcd(b, a%b); } struct segtree { vector<int>node; int n; void init(int N) { n = 1; while (n < N) { n *= 2; } node.resize(2 * n, 0); } void upd(int a, int x) { a += n - 1; node[a] = x; while (a > 0) { a = (a - 1) / 2; node[a] = gcd(node[2 * a + 1], node[2 * a + 2]); } } int calc(int a, int b, int k, int l, int r) { if (r <= a || b <= l)return 0; if (a <= l&&r <= b)return node[k]; int vl = calc(a, b, k * 2 + 1, l, (l + r) / 2); int vr = calc(a, b, k * 2 + 2, (l + r) / 2, r); return gcd(vl, vr); } int get(int a, int b) { return calc(a, b, 0, 0, n); } }; segtree seg; signed main() { ios::sync_with_stdio(0); cin.tie(0); int n; cin >> n; seg.init(n); rep(i, n) { cin >> a[i]; seg.upd(i, a[i]); } int res = 0; rep(i, n) { int l = i - 1, r = n; while (r - l > 1) { int mi = (l + r) / 2; if (seg.get(i, mi + 1) == 1)r = mi; else l = mi; } res += n - r; } cout << res << endl; }