This documentation is automatically generated by competitive-verifier/competitive-verifier
#include "tools/block_ceil.hpp"
template <typename M, typename N>
constexpr std::common_type_t<M, N> block_ceil(M x, N y) noexcept;
It returns $\left\lceil \frac{x}{y} \right\rceil y$.
<M>
is a built-in integral type, tools::int128_t
or tools::uint128_t
.<N>
is a built-in integral type, tools::int128_t
or tools::uint128_t
.std::common_type_t<M, N>
.#ifndef TOOLS_BLOCK_CEIL_HPP
#define TOOLS_BLOCK_CEIL_HPP
#include <cassert>
#include <type_traits>
#include "tools/ceil.hpp"
namespace tools {
template <typename M, typename N>
constexpr ::std::common_type_t<M, N> block_ceil(const M x, const N y) noexcept {
assert(y > 0);
return ::tools::ceil(x, y) * y;
}
}
#endif
#line 1 "tools/block_ceil.hpp"
#include <cassert>
#include <type_traits>
#line 1 "tools/ceil.hpp"
#line 1 "tools/is_integral.hpp"
#line 5 "tools/is_integral.hpp"
namespace tools {
template <typename T>
struct is_integral : ::std::is_integral<T> {};
template <typename T>
inline constexpr bool is_integral_v = ::tools::is_integral<T>::value;
}
#line 1 "tools/is_unsigned.hpp"
#line 5 "tools/is_unsigned.hpp"
namespace tools {
template <typename T>
struct is_unsigned : ::std::is_unsigned<T> {};
template <typename T>
inline constexpr bool is_unsigned_v = ::tools::is_unsigned<T>::value;
}
#line 8 "tools/ceil.hpp"
namespace tools {
template <typename M, typename N> requires (
::tools::is_integral_v<M> && !::std::is_same_v<::std::remove_cv_t<M>, bool> &&
::tools::is_integral_v<N> && !::std::is_same_v<::std::remove_cv_t<N>, bool>)
constexpr ::std::common_type_t<M, N> ceil(const M x, const N y) noexcept {
assert(y != 0);
if (y >= 0) {
if (x > 0) {
return (x - 1) / y + 1;
} else {
if constexpr (::tools::is_unsigned_v<::std::common_type_t<M, N>>) {
return 0;
} else {
return x / y;
}
}
} else {
if (x >= 0) {
if constexpr (::tools::is_unsigned_v<::std::common_type_t<M, N>>) {
return 0;
} else {
return x / y;
}
} else {
return (x + 1) / y + 1;
}
}
}
}
#line 7 "tools/block_ceil.hpp"
namespace tools {
template <typename M, typename N>
constexpr ::std::common_type_t<M, N> block_ceil(const M x, const N y) noexcept {
assert(y > 0);
return ::tools::ceil(x, y) * y;
}
}