結果
問題 | No.880 Yet Another Segment Tree Problem |
ユーザー | nono00 |
提出日時 | 2024-06-30 08:34:24 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 841 ms / 5,000 ms |
コード長 | 5,568 bytes |
コンパイル時間 | 3,224 ms |
コンパイル使用メモリ | 255,668 KB |
実行使用メモリ | 19,496 KB |
最終ジャッジ日時 | 2024-06-30 08:35:15 |
合計ジャッジ時間 | 21,055 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 794 ms
18,492 KB |
testcase_12 | AC | 774 ms
18,688 KB |
testcase_13 | AC | 547 ms
18,268 KB |
testcase_14 | AC | 770 ms
19,052 KB |
testcase_15 | AC | 798 ms
19,200 KB |
testcase_16 | AC | 841 ms
19,320 KB |
testcase_17 | AC | 723 ms
19,456 KB |
testcase_18 | AC | 721 ms
19,420 KB |
testcase_19 | AC | 434 ms
19,272 KB |
testcase_20 | AC | 451 ms
19,372 KB |
testcase_21 | AC | 458 ms
19,072 KB |
testcase_22 | AC | 438 ms
19,328 KB |
testcase_23 | AC | 461 ms
19,016 KB |
testcase_24 | AC | 430 ms
19,200 KB |
testcase_25 | AC | 423 ms
19,328 KB |
testcase_26 | AC | 432 ms
19,072 KB |
testcase_27 | AC | 423 ms
19,328 KB |
testcase_28 | AC | 441 ms
19,072 KB |
testcase_29 | AC | 760 ms
19,200 KB |
testcase_30 | AC | 785 ms
19,200 KB |
testcase_31 | AC | 834 ms
19,280 KB |
testcase_32 | AC | 191 ms
19,496 KB |
testcase_33 | AC | 402 ms
19,200 KB |
testcase_34 | AC | 451 ms
19,328 KB |
testcase_35 | AC | 430 ms
19,136 KB |
testcase_36 | AC | 413 ms
19,348 KB |
testcase_37 | AC | 413 ms
19,280 KB |
ソースコード
#include <bits/stdc++.h> using ll = long long; using ld = long double; #define rep(i, l, r) for (ll i = (l); i < (r); i++) #define rrep(i, r, l) for (ll i = (r); i-- > (l);) #define all(x) begin(x), end(x) template <class T> bool chmin(T& lhs, T rhs) { return lhs > rhs ? (lhs = rhs, true) : false; } template <class T> bool chmax(T& lhs, T rhs) { return lhs < rhs ? (lhs = rhs, true) : false; } struct IOIO { IOIO() { std::cin.tie(0)->sync_with_stdio(0); } } ioio; using namespace std; #include <bits/stdc++.h> using namespace std; template <class T> ostream& operator<<(ostream& os, const vector<T>& vs) { os << '{'; rep(i, 0, (int)vs.size()) os << vs[i] << (i + 1 == (int)vs.size() ? "" : ", "); os << '}'; return os; } template <class S, class T> ostream& operator<<(ostream& os, const pair<S, T>& p) { os << '(' << p.first << ", " << p.second << ')'; return os; } #ifdef DEBUG #define dump(x) cerr << "[" + string(#x) + "] " << x << endl; #else #define dump(...) #endif template <class M> struct segment_tree_beats { using T = M::T; using F = M::F; int n; vector<T> a; vector<F> lz; segment_tree_beats(int n_): n(bit_ceil((unsigned)n_)), a(2 * n, M::e()), lz(n, M::id()) {} segment_tree_beats(const vector<T>& a_): n(bit_ceil(a_.size())), a(2 * n, M::e()), lz(n, M::id()) { copy(all(a_), a.begin() + n); rrep(i, n, 1) update(i); } void apply(int l, int r, F v) { apply(0, n, l, r, 1, v); } T prod(int l, int r) { return prod(0, n, l, r, 1); } T get(int i) { return prod(0, n, i, i + 1, 1); } friend ostream& operator<<(ostream& os, segment_tree_beats& s) { rep(i, 0, s.n) s.get(i); os << vector(s.a.begin() + s.n, s.a.end()); return os; } private: void apply(int l, int r, int L, int R, int i, F v) { if (r <= L || R <= l) return; int m = (l + r) / 2; if (L <= l && r <= R) { eval(i, v); } else { push(i); apply(l, m, L, R, 2 * i, v); apply(m, r, L, R, 2 * i + 1, v); update(i); } } T prod(int l, int r, int L, int R, int i) { if (r <= L || R <= l) return M::e(); int m = (l + r) / 2; if (L <= l && r <= R) { return a[i]; } else { push(i); T p = M::op(prod(l, m, L, R, 2 * i), prod(m, r, L, R, 2 * i + 1)); return p; } } void push(int i) { eval(2 * i, lz[i]); eval(2 * i + 1, lz[i]); lz[i] = M::id(); } void update(int i) { a[i] = M::op(a[2 * i], a[2 * i + 1]); } void eval(int i, F v) { a[i] = M::map(v, a[i]); if (i < n) { lz[i] = M::compose(v, lz[i]); if (a[i].fail) { push(i); update(i); } } } }; template <class U> struct update_gcd_max_sum { static constexpr U update_id = numeric_limits<U>::min(); static constexpr U gcd_id = 0; static constexpr U inf = U(1e9) + 5; struct ope { U a, b; ope(U a, U b): a(a), b(b) {} static ope update(U a) { return ope(a, gcd_id); } static ope gcd(U b) { return ope(update_id, b); } }; struct info { info() {} info(U v): s(v), x(v), n(1), l(v), fail(false), same(true) {} U s, x, n, l; bool fail; bool same; friend ostream& operator<<(ostream& os, info i) { os << i.s; return os; } }; using T = info; using F = ope; static T op(T lhs, T rhs) { lhs.same &= rhs.same && lhs.x == rhs.x; lhs.s += rhs.s; chmax(lhs.x, rhs.x); lhs.n += rhs.n; lhs.l = min(lcm(lhs.l, rhs.l), inf); return lhs; } static T e() { T a; a.s = 0; a.x = -inf; a.n = 0; a.l = 1; a.fail = false; return a; } static T map(F lhs, T rhs) { if (lhs.a != update_id) { rhs.x = lhs.a; rhs.l = lhs.a; rhs.s = rhs.n * lhs.a; } if (lhs.b % rhs.l == 0) return rhs; if (rhs.same) { rhs.x = rhs.l = gcd(rhs.x, lhs.b); rhs.s = rhs.x * rhs.n; return rhs; } rhs.fail = true; return rhs; } static F compose(F lhs, F rhs) { if (lhs.a != update_id) return lhs; return F(rhs.a, gcd(lhs.b, rhs.b)); } static F id() { return F(update_id, gcd_id); } }; int main() { int n, q; cin >> n >> q; using info = update_gcd_max_sum<ll>::info; using ope = update_gcd_max_sum<ll>::ope; vector<info> a(n); rep(i, 0, n) { ll v; cin >> v; a[i] = info(v); } segment_tree_beats<update_gcd_max_sum<ll>> segtree(a); dump(segtree); rep(_, 0, q) { int t; cin >> t; if (t == 1) { int l, r; ll x; cin >> l >> r >> x; l--; segtree.apply(l, r, ope::update(x)); } else if (t == 2) { int l, r; ll x; cin >> l >> r >> x; l--; segtree.apply(l, r, ope::gcd(x)); } else if (t == 3) { int l, r; cin >> l >> r; l--; cout << segtree.prod(l, r).x << '\n'; } else { int l, r; cin >> l >> r; l--; cout << segtree.prod(l, r).s << '\n'; } dump(segtree); } }