NicheLibrary

This documentation is automatically generated by competitive-verifier/competitive-verifier

View the Project on GitHub NotLeonian/NicheLibrary

:heavy_check_mark: verify/yukicoder-2362.test.cpp

Depends on

Code

// competitive-verifier: PROBLEM https://yukicoder.me/problems/no/2362

#include <cassert>
#include <cstdint>
#include <iostream>

#include "../math/number-theory/generalized-floor-sum-pq-le-2.hpp"

namespace {

long long floor_div_ll(long long x, long long m) {
    assert(m > 0);
    long long q = x / m;
    long long r = x % m;
    if (r < 0)
        --q;
    return q;
}

long long floor_mod_ll(long long x, long long m) {
    return x - floor_div_ll(x, m) * m;
}

void self_test() {
    for (long long n = 0; n <= 10; ++n) {
        for (long long m = 1; m <= 10; ++m) {
            for (long long a = -10; a <= 10; ++a) {
                for (long long b = -10; b <= 10; ++b) {
                    auto res =
                        generalized_floor_sum_pq_le_2<long long>(n, m, a, b);

                    long long s01 = 0, s11 = 0, s02 = 0;
                    for (long long i = 0; i < n; ++i) {
                        long long y = floor_div_ll(a * i + b, m);
                        s01 += y;
                        s11 += i * y;
                        s02 += y * y;
                    }
                    assert(res.ans_01 == s01);
                    assert(res.ans_11 == s11);
                    assert(res.ans_02 == s02);
                }
            }
        }
    }
}

} // namespace

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    self_test();

    int T;
    std::cin >> T;
    while (T--) {
        std::uint64_t N, M, X, Y;
        std::cin >> N >> M >> X >> Y;

        const auto r0 =
            generalized_floor_sum_pq_le_2<std::uint64_t>(N, M, X, 0);
        const auto r1 =
            generalized_floor_sum_pq_le_2<std::uint64_t>(N, M, X, Y);

        std::uint64_t ans = 0;
        ans -= r0.ans_01 * N - r0.ans_11;
        ans -= r1.ans_01 * (N - 1) - 2 * r1.ans_11;

        std::cout << ans << '\n';
    }
    return 0;
}
#line 1 "verify/yukicoder-2362.test.cpp"
// competitive-verifier: PROBLEM https://yukicoder.me/problems/no/2362

#include <cassert>
#include <cstdint>
#include <iostream>

#line 1 "math/number-theory/generalized-floor-sum-pq-le-2.hpp"



// 一般化 floor sum (p+q<=2) のうち (0,1),(1,1),(0,2) をまとめて求める。
// ans_01 = Σ floor((a i + b)/m), ans_11 = Σ i*floor((a i + b)/m), ans_02 = Σ floor((a i + b)/m)^2。
// n>=0, m>0 を仮定する。a,b は負でもよい。
// 計算量 O(log m)。

#line 10 "math/number-theory/generalized-floor-sum-pq-le-2.hpp"
#include <type_traits>

template <class T> struct GeneralizedFloorSumPQLe2Result {
    T ans_01;
    T ans_11;
    T ans_02;
};

namespace generalized_floor_sum_pq_le_2_internal {

template <class T> struct is_integral : std::is_integral<T> {};
#ifdef __SIZEOF_INT128__
template <> struct is_integral<__int128_t> : std::true_type {};
template <> struct is_integral<__uint128_t> : std::true_type {};
#endif

template <class T> struct is_signed : std::is_signed<T> {};
#ifdef __SIZEOF_INT128__
template <> struct is_signed<__int128_t> : std::true_type {};
template <> struct is_signed<__uint128_t> : std::false_type {};
#endif

template <class T> T floor_div(T x, T y) {
    assert(y > 0);
    if constexpr (is_signed<T>::value) {
        T q = x / y;
        T r = x % y;
        if (r < 0)
            --q;
        return q;
    } else {
        return x / y;
    }
}

template <class T> T floor_mod(T x, T y) {
    assert(y > 0);
    if constexpr (is_signed<T>::value) {
        T r = x % y;
        if (r < 0)
            r += y;
        return r;
    } else {
        return x % y;
    }
}

// Σ_{i=0}^{n-1} i = n(n-1)/2
template <class T> T sum_0_to_n_minus_1(T n) {
    if (n == 0)
        return 0;
    if ((n & 1) == 0)
        return (n / 2) * (n - 1);
    return n * ((n - 1) / 2);
}

// Σ_{i=0}^{n-1} i^2 = (n-1)n(2n-1)/6
template <class T> T sum_0_to_n_minus_1_sq(T n) {
    if (n == 0)
        return 0;
    T a = n - 1, b = n, c = 2 * n - 1;
    if ((a % 2) == 0)
        a /= 2;
    else if ((b % 2) == 0)
        b /= 2;
    else
        c /= 2;

    if ((a % 3) == 0)
        a /= 3;
    else if ((b % 3) == 0)
        b /= 3;
    else
        c /= 3;

    return a * b * c;
}

template <class T> T sum_range(T l, T r) {
    // Σ_{i=l}^{r} i
    if (l > r)
        return 0;
    T cnt = r - l + 1;
    T s = l + r;
    if ((s & 1) == 0)
        s /= 2;
    else
        cnt /= 2;
    return s * cnt;
}

template <class Int> struct Result {
    Int ans_01;
    Int ans_11;
    Int ans_02;
};

template <class Int> Result<Int> solve(Int n, Int m, Int a, Int b) {
    if constexpr (is_signed<Int>::value)
        assert(n >= 0);
    assert(m > 0);
    if (n == 0)
        return {0, 0, 0};

    const Int qa = floor_div(a, m);
    a = floor_mod(a, m);
    const Int qb = floor_div(b, m);
    b = floor_mod(b, m);

    if constexpr (is_signed<Int>::value) {
        assert(a >= 0);
        assert(b >= 0);
    }
    assert(a < m);
    assert(b < m);

    Result<Int> base = {0, 0, 0};
    if (a != 0) {
        const Int y_max = (a * n + b) / m;
        if (y_max != 0) {
            const Int x_max = y_max * m - b;
            const Int t = (x_max + a - 1) / a; // ceil(x_max / a)
            const Int b2 = (a - (x_max % a)) % a;

            const auto rec = solve(y_max, a, m, b2);

            const Int head_01 = rec.ans_01;
            const Int head_11 = ((2 * t - 1) * rec.ans_01 - rec.ans_02) / 2;
            const Int head_02 = (2 * y_max - 1) * rec.ans_01 - 2 * rec.ans_11;

            const Int tail_len = n - t;
            const Int tail_01 = tail_len * y_max;
            const Int tail_11 = y_max * sum_range(t, n - 1);
            const Int tail_02 = tail_len * y_max * y_max;

            base = {head_01 + tail_01, head_11 + tail_11, head_02 + tail_02};
        }
    }

    const Int si = sum_0_to_n_minus_1(n);
    const Int si2 = sum_0_to_n_minus_1_sq(n);

    Result<Int> ans;
    ans.ans_01 = qa * si + qb * n + base.ans_01;
    ans.ans_11 = qa * si2 + qb * si + base.ans_11;
    ans.ans_02 = qa * qa * si2 + 2 * qa * qb * si + 2 * qa * base.ans_11 +
                 qb * qb * n + 2 * qb * base.ans_01 + base.ans_02;
    return ans;
}

} // namespace generalized_floor_sum_pq_le_2_internal

template <class T>
GeneralizedFloorSumPQLe2Result<T> generalized_floor_sum_pq_le_2(T n, T m, T a,
                                                                T b) {
    static_assert(generalized_floor_sum_pq_le_2_internal::is_integral<T>::value,
                  "T must be integer.");
    if constexpr (generalized_floor_sum_pq_le_2_internal::is_signed<T>::value)
        assert(n >= 0);
    assert(m > 0);

#ifdef __SIZEOF_INT128__
    using I = __int128_t;
    const auto res = generalized_floor_sum_pq_le_2_internal::solve<I>(
        static_cast<I>(n), static_cast<I>(m), static_cast<I>(a),
        static_cast<I>(b));
    return {static_cast<T>(res.ans_01), static_cast<T>(res.ans_11),
            static_cast<T>(res.ans_02)};
#else
    const auto res =
        generalized_floor_sum_pq_le_2_internal::solve<T>(n, m, a, b);
    return {res.ans_01, res.ans_11, res.ans_02};
#endif
}


#line 8 "verify/yukicoder-2362.test.cpp"

namespace {

long long floor_div_ll(long long x, long long m) {
    assert(m > 0);
    long long q = x / m;
    long long r = x % m;
    if (r < 0)
        --q;
    return q;
}

long long floor_mod_ll(long long x, long long m) {
    return x - floor_div_ll(x, m) * m;
}

void self_test() {
    for (long long n = 0; n <= 10; ++n) {
        for (long long m = 1; m <= 10; ++m) {
            for (long long a = -10; a <= 10; ++a) {
                for (long long b = -10; b <= 10; ++b) {
                    auto res =
                        generalized_floor_sum_pq_le_2<long long>(n, m, a, b);

                    long long s01 = 0, s11 = 0, s02 = 0;
                    for (long long i = 0; i < n; ++i) {
                        long long y = floor_div_ll(a * i + b, m);
                        s01 += y;
                        s11 += i * y;
                        s02 += y * y;
                    }
                    assert(res.ans_01 == s01);
                    assert(res.ans_11 == s11);
                    assert(res.ans_02 == s02);
                }
            }
        }
    }
}

} // namespace

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    self_test();

    int T;
    std::cin >> T;
    while (T--) {
        std::uint64_t N, M, X, Y;
        std::cin >> N >> M >> X >> Y;

        const auto r0 =
            generalized_floor_sum_pq_le_2<std::uint64_t>(N, M, X, 0);
        const auto r1 =
            generalized_floor_sum_pq_le_2<std::uint64_t>(N, M, X, Y);

        std::uint64_t ans = 0;
        ans -= r0.ans_01 * N - r0.ans_11;
        ans -= r1.ans_01 * (N - 1) - 2 * r1.ans_11;

        std::cout << ans << '\n';
    }
    return 0;
}

Test cases

Env Name Status Elapsed Memory
g++ 00_sample01.txt :heavy_check_mark: AC 16 ms 4 MB
g++ 00_sample02.txt :heavy_check_mark: AC 17 ms 4 MB
g++ 01_hand01.txt :heavy_check_mark: AC 16 ms 4 MB
g++ 50_test01.txt :heavy_check_mark: AC 61 ms 3 MB
g++ 50_test02.txt :heavy_check_mark: AC 32 ms 4 MB
g++ 50_test03.txt :heavy_check_mark: AC 22 ms 4 MB
g++ 50_test04.txt :heavy_check_mark: AC 112 ms 4 MB
g++ 58_test01.txt :heavy_check_mark: AC 45 ms 4 MB
g++ 70_test01.txt :heavy_check_mark: AC 47 ms 4 MB
g++ 70_test02.txt :heavy_check_mark: AC 47 ms 4 MB
clang++ 00_sample01.txt :heavy_check_mark: AC 19 ms 4 MB
clang++ 00_sample02.txt :heavy_check_mark: AC 19 ms 4 MB
clang++ 01_hand01.txt :heavy_check_mark: AC 19 ms 4 MB
clang++ 50_test01.txt :heavy_check_mark: AC 76 ms 4 MB
clang++ 50_test02.txt :heavy_check_mark: AC 39 ms 4 MB
clang++ 50_test03.txt :heavy_check_mark: AC 26 ms 4 MB
clang++ 50_test04.txt :heavy_check_mark: AC 143 ms 4 MB
clang++ 58_test01.txt :heavy_check_mark: AC 56 ms 4 MB
clang++ 70_test01.txt :heavy_check_mark: AC 57 ms 4 MB
clang++ 70_test02.txt :heavy_check_mark: AC 58 ms 4 MB
Back to top page