結果
問題 |
No.1036 Make One With GCD 2
|
ユーザー |
|
提出日時 | 2020-04-26 05:26:37 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 246 ms / 2,000 ms |
コード長 | 1,520 bytes |
コンパイル時間 | 588 ms |
コンパイル使用メモリ | 51,916 KB |
最終ジャッジ日時 | 2025-01-10 01:52:06 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 41 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:67:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 67 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:68:35: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 68 | for(int i = 0; i < n; i++) scanf("%llu", A+i); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include <cstdio> #include <stack> using u64 = unsigned long long int; u64 bgcd(u64 x, u64 y){ if(x == 0 || y == 0) return x^y; int bx = __builtin_ctzll(x); int by = __builtin_ctzll(y); int k = (bx < by) ? bx : by; x >>= bx; y >>= by; while(x!=y){ if(x < y){ y -= x; y >>= __builtin_ctzll(y); } else { x -= y; x >>= __builtin_ctzll(x); } } return x << k; } struct u64GCDMonoid { using element_type = u64; static u64 op(u64 x, u64 y) { return bgcd(x, y); } static constexpr u64 id = 0; }; template <typename M> struct swag { using T = typename M::element_type; std::stack<T> r, cl, cr; swag(){ cl.push(M::id); cr.push(M::id); } void push_back(const T &x){ r.push(x); cr.push(M::op(cr.top(), x)); }; void pop_front(){ if(cl.size() == 1){ while(r.size() != 1){ cl.push(M::op(cl.top(), r.top())); r.pop(); cr.pop(); } r.pop(); cr.pop(); } else { cl.pop(); } } T fold() const { return M::op(cl.top(), cr.top()); } }; int n; u64 A[500001]; int main(){ scanf("%d", &n); for(int i = 0; i < n; i++) scanf("%llu", A+i); swag<u64GCDMonoid> s; u64 ans = 0; int r = 0; s.push_back(0); for(int l = 0; l <= r; l++){ s.pop_front(); for(; r <= n; r++){ if(s.fold() == 1){ // printf("(%d, %d) ", l, r-1); ans += n - r + 1; break; } s.push_back(A[r]); } } printf("%llu\n", ans); return 0; }