#pragma once #include "types.h" #include #include #include template class VT> size_t count(const VT& v) { return v.size; } template constexpr static inline size_t count(const T&) { return 1; } // TODO: Specializations for dt/str/none template class VT> types::GetLongType sum(const VT& v) { types::GetLongType ret = 0; for (const auto& _v : v) ret += _v; return ret; } template class VT> types::GetFPType avg(const VT& v) { return static_cast>( sum(v) / static_cast(v.size)); } template class VT> T max(const VT& v) { T max_v = std::numeric_limits::min(); for (const auto& _v : v) max_v = max_v > _v ? max_v : _v; return max_v; } template class VT> T min(const VT& v) { T min_v = std::numeric_limits::max(); for (const auto& _v : v) min_v = min_v < _v ? min_v : _v; return min_v; } template class VT> VT mins(const VT& arr) { const int& len = arr.size; std::deque> cache; VT ret(len); T min = std::numeric_limits::max(); for (int i = 0; i < len; ++i) { if (arr[i] < min) min = arr[i]; ret[i] = min; } return ret; } template class VT> VT maxs(const VT& arr) { const int& len = arr.size; VT ret(len); T max = std::numeric_limits::min(); for (int i = 0; i < len; ++i) { if (arr[i] > max) max = arr[i]; ret[i] = max; } return ret; } template class VT> VT minw(const VT& arr, uint32_t w) { const int& len = arr.size; VT ret(len); std::deque> cache; for (int i = 0; i < len; ++i) { if (!cache.empty() && cache.front().second == i - w) cache.pop_front(); while (!cache.empty() && cache.back().first > arr[i]) cache.pop_back(); cache.push_back({ arr[i], i }); ret[i] = cache.front().first; } return ret; } template class VT> VT maxw(const VT& arr, uint32_t w) { const int& len = arr.size; VT ret(len); std::deque> cache; for (int i = 0; i < len; ++i) { if (!cache.empty() && cache.front().second == i - w) cache.pop_front(); while (!cache.empty() && cache.back().first > arr[i]) cache.pop_back(); cache.push_back({ arr[i], i }); arr[i] = cache.front().first; } return ret; } template constexpr inline T max(const T& v) { return v; } template constexpr inline T min(const T& v) { return v; } template constexpr inline T avg(const T& v) { return v; } template constexpr inline T sum(const T& v) { return v; } template constexpr inline T maxw(const T& v, uint32_t) { return v; } template constexpr inline T minw(const T& v, uint32_t) { return v; } template constexpr inline T avgw(const T& v, uint32_t) { return v; } template constexpr inline T sumw(const T& v, uint32_t) { return v; } template constexpr inline T maxs(const T& v) { return v; } template constexpr inline T mins(const T& v) { return v; } template constexpr inline T avgs(const T& v) { return v; } template constexpr inline T sums(const T& v) { return v; }