結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | bond_cmprog |
提出日時 | 2020-04-24 22:16:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 316 ms / 2,000 ms |
コード長 | 3,052 bytes |
コンパイル時間 | 2,415 ms |
コンパイル使用メモリ | 205,552 KB |
実行使用メモリ | 15,360 KB |
最終ジャッジ日時 | 2024-09-16 13:19:18 |
合計ジャッジ時間 | 10,819 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 236 ms
15,360 KB |
testcase_01 | AC | 126 ms
15,360 KB |
testcase_02 | AC | 177 ms
15,300 KB |
testcase_03 | AC | 17 ms
8,680 KB |
testcase_04 | AC | 29 ms
13,920 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 39 ms
8,832 KB |
testcase_08 | AC | 33 ms
8,704 KB |
testcase_09 | AC | 142 ms
15,232 KB |
testcase_10 | AC | 136 ms
14,976 KB |
testcase_11 | AC | 144 ms
15,308 KB |
testcase_12 | AC | 139 ms
14,976 KB |
testcase_13 | AC | 223 ms
15,104 KB |
testcase_14 | AC | 228 ms
15,232 KB |
testcase_15 | AC | 213 ms
14,932 KB |
testcase_16 | AC | 214 ms
14,932 KB |
testcase_17 | AC | 227 ms
15,104 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 212 ms
14,976 KB |
testcase_23 | AC | 163 ms
13,824 KB |
testcase_24 | AC | 221 ms
15,088 KB |
testcase_25 | AC | 205 ms
14,720 KB |
testcase_26 | AC | 211 ms
14,848 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 1 ms
5,376 KB |
testcase_31 | AC | 1 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 | 196 ms
15,332 KB |
testcase_39 | AC | 213 ms
15,360 KB |
testcase_40 | AC | 158 ms
13,824 KB |
testcase_41 | AC | 300 ms
15,312 KB |
testcase_42 | AC | 282 ms
15,360 KB |
testcase_43 | AC | 297 ms
15,360 KB |
testcase_44 | AC | 316 ms
15,360 KB |
ソースコード
#include <bits/stdc++.h> #define REP(i, n) for(int i = 0;i < n;i++) #define ll long long using namespace std; //typedef vector<unsigned int>vec; //typedef vector<ll>vec; //typedef vector<vec> mat; typedef pair<int, int> P; typedef pair<ll,ll> LP; const int dx[8] = {1, 0, -1, 0, 1, -1, -1, 1}; const int dy[8] = {0, 1, 0, -1, 1, 1, -1, -1}; const int INF = 1000000000; const ll LINF = 1000000000000000000;//1e18 const ll MOD = 1000000007; const double PI = acos(-1.0); const double EPS = 1e-10; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } //template<class T> inline void add(T &a, T b){a = ((a+b) % MOD + MOD) % MOD;}; template<class Monoid> struct SegTree { using Func = function<Monoid(Monoid, Monoid)>; const Func F; const Monoid UNITY; int SIZE_R; vector<Monoid> dat; SegTree(int n, const Func f, const Monoid &unity): F(f), UNITY(unity) { init(n); } void init(int n) { SIZE_R = 1; while (SIZE_R < n) SIZE_R *= 2; dat.assign(SIZE_R * 2, UNITY); } /* set, a is 0-indexed */ void set(int a, const Monoid &v) { dat[a + SIZE_R] = v; } void build() { for (int k = SIZE_R - 1; k > 0; --k) dat[k] = F(dat[k*2], dat[k*2+1]); } /* update a, a is 0-indexed */ void update(int a, const Monoid &v) { int k = a + SIZE_R; dat[k] = v; while (k >>= 1) dat[k] = F(dat[k*2], dat[k*2+1]); } /* get [a, b), a and b are 0-indexed */ Monoid get(int a, int b) { Monoid vleft = UNITY, vright = UNITY; for (int left = a + SIZE_R, right = b + SIZE_R; left < right; left >>= 1, right >>= 1) { if (left & 1) vleft = F(vleft, dat[left++]); if (right & 1) vright = F(dat[--right], vright); } return F(vleft, vright); } inline Monoid operator [] (int a) { return dat[a + SIZE_R]; } /* debug */ void print() { for (int i = 0; i < SIZE_R; ++i) { cout << (*this)[i]; if (i != SIZE_R-1) cout << ","; } cout << endl; } }; void solve(){ int N; cin >> N; SegTree<long long> seg(N, [](long long a, long long b) { return gcd(a, b); }, 0); vector<long long> A(N); for (int i = 0; i < N; ++i) { cin >> A[i]; seg.set(i, A[i]); } seg.build(); ll ans = 0; int right = 0; for(int left=0;left<N;left++){ while(right < N && seg.get(left, right + 1) != 1){ ++right; } ans += N - right; // cout << left << " " << right << endl; if(right == left) right++; } cout << ans << endl; } int main(){ cin.tie(0); ios::sync_with_stdio(false); solve(); // int T; cin >> T; REP(t,T) solve(); }