kyopro-lib

This documentation is automatically generated by online-judge-tools/verification-helper

View on GitHub

:x: test/aoj/DSL_2_H/main.starry_sky.test.cpp

Depends on

Code

#define PROBLEM "http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=DSL_2_H"

#include <functional>
#include <iostream>
#include "Mylib/DataStructure/SegmentTree/starry_sky_tree.cpp"
#include "Mylib/IO/input_tuples.cpp"

namespace hl = haar_lib;

int main() {
  int n, q;
  std::cin >> n >> q;

  hl::starry_sky_tree<int, std::less<>> seg(n);

  for (auto [type, s, t] : hl::input_tuples<int, int, int>(q)) {
    if (type == 0) {
      int x;
      std::cin >> x;
      seg.update(s, t + 1, x);
    } else {
      std::cout << seg.fold(s, t + 1) << std::endl;
    }
  }

  return 0;
}
#line 1 "test/aoj/DSL_2_H/main.starry_sky.test.cpp"
#define PROBLEM "http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=DSL_2_H"

#include <functional>
#include <iostream>
#line 2 "Mylib/DataStructure/SegmentTree/starry_sky_tree.cpp"
#include <algorithm>
#include <cassert>
#include <optional>
#include <vector>

namespace haar_lib {
  template <typename T, typename Compare>
  class starry_sky_tree {
  public:
    using value_type = T;

  private:
    int depth_, size_, hsize_;
    std::vector<T> data_;
    Compare compare_ = Compare();

    T f(T a, T b) const {
      return compare_(a, b) ? a : b;
    }

    void bottom_up(int i) {
      if (i > size_) return;

      while (i >= 1) {
        if (i < hsize_) {
          const auto d = f(data_[i << 1 | 0], data_[i << 1 | 1]);

          data_[i << 1 | 0] -= d;
          data_[i << 1 | 1] -= d;
          data_[i] += d;
        }

        i >>= 1;
      }
    }

    std::optional<T> get(int i, int l, int r, int s, int t, T val) const {
      if (r <= s or t <= l) return std::nullopt;
      if (s <= l and r <= t) return val + data_[i];

      auto a = get(i << 1 | 0, l, (l + r) / 2, s, t, val + data_[i]);
      auto b = get(i << 1 | 1, (l + r) / 2, r, s, t, val + data_[i]);

      if (not a) return b;
      if (not b) return a;
      return f(*a, *b);
    }

  public:
    starry_sky_tree() {}
    starry_sky_tree(int n) : depth_(n > 1 ? 32 - __builtin_clz(n - 1) + 1 : 1),
                             size_(1 << depth_),
                             hsize_(size_ / 2),
                             data_(size_, 0) {}

    void update(int l, int r, T val) {
      assert(0 <= l and l <= r and r <= hsize_);
      int L = l + hsize_;
      int R = r + hsize_;

      while (L < R) {
        if (R & 1) --R, data_[R] += val;
        if (L & 1) data_[L] += val, ++L;
        L >>= 1;
        R >>= 1;
      }

      bottom_up(l + hsize_);
      bottom_up(r + hsize_);
    }

    T fold(int l, int r) const {
      assert(0 <= l and l <= r and r <= hsize_);
      return *get(1, 0, hsize_, l, r, 0);
    }

    T fold_all() const {
      return data_[1];
    }

    template <typename U>
    void init_with_vector(std::vector<U> &a) {
      for (int i = 0; i < (int) a.size(); ++i) {
        data_[hsize_ + i] = a[i];
      }

      for (int i = hsize_; --i >= 1;) {
        data_[i] = f(data_[i << 1 | 0], data_[i << 1 | 1]);
      }

      for (int i = size_; --i > 1;) {
        data_[i] -= data_[i >> 1];
      }
    }
  };
}  // namespace haar_lib
#line 2 "Mylib/IO/input_tuples.cpp"
#include <initializer_list>
#line 4 "Mylib/IO/input_tuples.cpp"
#include <tuple>
#include <utility>
#line 6 "Mylib/IO/input_tuple.cpp"

namespace haar_lib {
  template <typename T, size_t... I>
  static void input_tuple_helper(std::istream &s, T &val, std::index_sequence<I...>) {
    (void) std::initializer_list<int>{(void(s >> std::get<I>(val)), 0)...};
  }

  template <typename T, typename U>
  std::istream &operator>>(std::istream &s, std::pair<T, U> &value) {
    s >> value.first >> value.second;
    return s;
  }

  template <typename... Args>
  std::istream &operator>>(std::istream &s, std::tuple<Args...> &value) {
    input_tuple_helper(s, value, std::make_index_sequence<sizeof...(Args)>());
    return s;
  }
}  // namespace haar_lib
#line 8 "Mylib/IO/input_tuples.cpp"

namespace haar_lib {
  template <typename... Args>
  class InputTuples {
    struct iter {
      using value_type = std::tuple<Args...>;
      value_type value;
      bool fetched = false;
      int N, c = 0;

      value_type operator*() {
        if (not fetched) {
          std::cin >> value;
        }
        return value;
      }

      void operator++() {
        ++c;
        fetched = false;
      }

      bool operator!=(iter &) const {
        return c < N;
      }

      iter(int N) : N(N) {}
    };

    int N;

  public:
    InputTuples(int N) : N(N) {}

    iter begin() const { return iter(N); }
    iter end() const { return iter(N); }
  };

  template <typename... Args>
  auto input_tuples(int N) {
    return InputTuples<Args...>(N);
  }
}  // namespace haar_lib
#line 7 "test/aoj/DSL_2_H/main.starry_sky.test.cpp"

namespace hl = haar_lib;

int main() {
  int n, q;
  std::cin >> n >> q;

  hl::starry_sky_tree<int, std::less<>> seg(n);

  for (auto [type, s, t] : hl::input_tuples<int, int, int>(q)) {
    if (type == 0) {
      int x;
      std::cin >> x;
      seg.update(s, t + 1, x);
    } else {
      std::cout << seg.fold(s, t + 1) << std::endl;
    }
  }

  return 0;
}
Back to top page