Processing math: 100%

Sunday, 28 February 2021

Chinese Remainder Theorem

A linear congruence can be displayed as

axb(mod m)

By definition of congruence, axb(mod m) iff axb is disible by m. According to Wikipedia, the earliest known statement of the Chinese Remainder Theorem is by the Chinese mathematician Sun-tzu in the Sun-tzu Suan-ching in the 3rd century AD.

We can rewrite the above statement into below congruence equations.

x2(mod 3)

x3(mod 5)
x2(mod 7)

and the answer is 23. In fact, this is the minimum possible solution. Starting from 23, you can get another possible answer by adding 105, i.e.

x=23+105n

where

n0,1,2,3,

Given a set of congruence equations, we are interested to find a that produces the given remainders.

aa1(mod p1)

aa2(mod p2)

 

aak(mod pk)

where every pair pi are pairwise coprime, ai are given constants.

Problem: Oversleeping

In this problem, we are interested in finding the minimum non-negative integer t such that

Xt mod (2X+2Y)<X+Y

Pt mod (P+Q)<P+Q

We can solve this problem using Chinese Remainder Theorem.

tt1(mod 2X+2Y)

tt2(mod P+Q)

AtCoder has provided a crt library here, which makes the implementation relatively simple.

#include <atcoder/math>
using namespace atcoder;

const ll mx = numeric_limits<ll>::max();

void solve() {
    ll X, Y, P, Q;
    cin >> X >> Y >> P >> Q;
    ll ans = mx;
    for(ll t1 = X; t1 < X + Y; t1++) {
        for(ll t2 = P; t2 < P + Q; t2++) {
            auto [t, lcm] = crt(
                { t1, t2 },                 // rem
                { 2 * X + 2 * Y, P + Q }    // mod
            );
            if(lcm == 0) {
                // no solution
                continue;
            }
            MIN(ans, t);
        }
    }
    if(ans == mx) OUT("infinity");
    else OUT(ans);
}

The full solution is available here.

No comments:

Post a Comment

A Fun Problem - Math

# Problem Statement JATC's math teacher always gives the class some interesting math problems so that they don't get bored. Today t...