結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | minato |
提出日時 | 2020-07-08 03:10:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 803 ms / 2,000 ms |
コード長 | 3,442 bytes |
コンパイル時間 | 3,896 ms |
コンパイル使用メモリ | 241,168 KB |
実行使用メモリ | 15,488 KB |
最終ジャッジ日時 | 2024-10-02 05:06:31 |
合計ジャッジ時間 | 17,077 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 803 ms
15,360 KB |
testcase_01 | AC | 173 ms
15,360 KB |
testcase_02 | AC | 171 ms
15,360 KB |
testcase_03 | AC | 31 ms
8,832 KB |
testcase_04 | AC | 54 ms
13,952 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 63 ms
8,960 KB |
testcase_08 | AC | 55 ms
8,704 KB |
testcase_09 | AC | 234 ms
15,232 KB |
testcase_10 | AC | 216 ms
14,976 KB |
testcase_11 | AC | 236 ms
15,360 KB |
testcase_12 | AC | 217 ms
14,976 KB |
testcase_13 | AC | 351 ms
14,976 KB |
testcase_14 | AC | 354 ms
15,232 KB |
testcase_15 | AC | 331 ms
14,976 KB |
testcase_16 | AC | 335 ms
14,976 KB |
testcase_17 | AC | 345 ms
15,104 KB |
testcase_18 | AC | 3 ms
5,248 KB |
testcase_19 | AC | 3 ms
5,248 KB |
testcase_20 | AC | 3 ms
5,248 KB |
testcase_21 | AC | 3 ms
5,248 KB |
testcase_22 | AC | 329 ms
14,976 KB |
testcase_23 | AC | 244 ms
13,952 KB |
testcase_24 | AC | 344 ms
15,104 KB |
testcase_25 | AC | 319 ms
14,720 KB |
testcase_26 | AC | 323 ms
14,848 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | AC | 2 ms
5,248 KB |
testcase_34 | AC | 2 ms
5,248 KB |
testcase_35 | AC | 2 ms
5,248 KB |
testcase_36 | AC | 2 ms
5,248 KB |
testcase_37 | AC | 2 ms
5,248 KB |
testcase_38 | AC | 167 ms
15,360 KB |
testcase_39 | AC | 650 ms
15,360 KB |
testcase_40 | AC | 243 ms
13,952 KB |
testcase_41 | AC | 526 ms
15,360 KB |
testcase_42 | AC | 500 ms
15,360 KB |
testcase_43 | AC | 554 ms
15,360 KB |
testcase_44 | AC | 586 ms
15,488 KB |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; using ll = long long; using u64 = uint_fast64_t; using pii = pair<int, int>; using pll = pair<long long, long long>; #define rep(i, n) for(int i = 0; i < (n); ++i) #define all(x) (x).begin(),(x).end() constexpr char ln = '\n'; constexpr long long MOD = 1000000007; //constexpr long long MOD = 998244353; template<class T1, class T2> inline bool chmax(T1 &a, T2 b) { if (a < b) { a = b; return true;} return false; } template<class T1, class T2> inline bool chmin(T1 &a, T2 b) { if (a > b) { a = b; return true;} return false; } inline int popcount(int x) {return __builtin_popcount(x);} inline int popcount(long long x) {return __builtin_popcountll(x);} void print() { cout << "\n"; } template<class T, class... Args> void print(const T &x, const Args &... args) { cout << x << " "; print(args...); } /////////////////////////////////////////////////////////////////////////////////////////////////////////////// template<typename T, typename Monoid> struct SegmentTree { Monoid merge; T unity; int N; vector<T> node; SegmentTree(Monoid f, T id) : merge(f), unity(id) {} void init(int sz) { N = 1; while (N < sz) N <<= 1; node.assign(2*N,unity); } void set(int k, const T &val) {node[k+N] = val;} void build() { for (int i = N-1; i > 0; --i) { node[i] = merge(node[i<<1|0], node[i<<1|1]); } } // (0-indexed) void update(int x, T val) { x += N; node[x] = val; while (x > 1) { x >>= 1; node[x] = merge(node[x<<1|0], node[x<<1|1]); } } // [l, r) (0-indexed) T get(int l, int r) { if (l >= r) return unity; T resl = unity, resr = unity; l += N; r += N; while (l < r) { if (l & 1) resl = merge(resl, node[l++]); l >>= 1; if (r & 1) resr = merge(node[--r], resr); r >>= 1; } return merge(resl, resr); } template<typename C> int binarysearch(int s, const C &check, T &acc, int k, int l, int r) { if (r-l==1) { acc = merge(acc,node[k]); return check(acc) ? k - N : -1; } int m = (l+r)>>1; if(m <= s) return binarysearch(s, check, acc, (k<<1)|1, m, r); if(s <= l && !check(merge(acc,node[k]))) { acc = merge(acc,node[k]); return -1; } int vl = binarysearch(s, check, acc, (k<<1)|0, l, m); if(~vl) return vl; return binarysearch(s, check, acc, (k<<1)|1, m, r); } template<typename C> int binarysearch(int s, const C &check) { T acc = unity; return binarysearch(s, check, acc, 1, 0, N); } T operator[](int x) {return node[x+N];} }; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; vector<ll> A(N); rep(i,N) cin >> A[i]; auto f=[](ll a, ll b) {return gcd(a,b);}; const ll id = 0; SegmentTree seg(f,id); seg.init(N); rep(i,N) seg.set(i,A[i]); seg.build(); auto check=[](ll x) {return x==1;}; ll ans = 0; rep(i,N) { int k = seg.binarysearch(i,check); if (k==-1) continue; ans += N-k; } cout << ans << ln; }