結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | 👑 SPD_9X2 |
提出日時 | 2020-04-24 22:37:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,358 bytes |
コンパイル時間 | 2,814 ms |
コンパイル使用メモリ | 208,668 KB |
実行使用メモリ | 89,216 KB |
最終ジャッジ日時 | 2024-11-07 02:49:04 |
合計ジャッジ時間 | 17,537 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 3 ms
5,248 KB |
testcase_19 | AC | 4 ms
5,248 KB |
testcase_20 | AC | 4 ms
5,248 KB |
testcase_21 | AC | 4 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
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 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <iostream> #include <limits> #include <numeric> #include <type_traits> using namespace std; #define rep(i,n,m) for(int (i)=(n);(i)<(m);(i)++) #define rrep(i,n,m) for(int (i)=(n);(i)>(m);(i)--) using ll = long long; const ll mod = 998244353; template< typename T > struct SparseTable { vector< vector< T > > st; vector< ll > lookup; SparseTable(const vector< T > &v) { ll b = 0; while((1 << b) <= v.size()) ++b; st.assign(b, vector< T >(1 << b)); for(ll i = 0; i < v.size(); i++) { st[0][i] = v[i]; } for(ll i = 1; i < b; i++) { for(ll j = 0; j + (1 << i) <= (1 << b); j++) { st[i][j] = std::gcd(st[i - 1][j], st[i - 1][j + (1 << (i - 1))]); } } lookup.resize(v.size() + 1); for(ll i = 2; i < (ll)lookup.size(); i++) { lookup[i] = lookup[i >> 1] + 1; } } inline T rmq(ll l, ll r) { ll b = lookup[r - l]; return std::gcd(st[b][l], st[b][r - (1 << b)]); } }; int main(){ int N; cin >> N; vector<ll> A(N); rep(i,0,N) cin >> A[i]; SparseTable<ll> spt(A); ll l = 0 , ans = N*(N-1)/2 + N; rep(r,0,N){ if (A[r] == 1) continue; while (spt.rmq(l,r+1) == 1) l++; ans -= (r-l+1); //cout << l << " " << r << " " << spt.rmq(l,r+1) << endl; } cout << ans << endl; }