A linear congruence can be displayed as
ax≡b(mod m)
By definition of congruence, ax≡b(mod m) iff ax−b 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.
x≡2(mod 3)
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+105∗n
where
n∈0,1,2,3,⋯
Given a set of congruence equations, we are interested to find a that produces the given remainders.
a≡a1(mod p1)
a≡a2(mod p2)
⋯
a≡ak(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
X≤t mod (2X+2Y)<X+Y
P≤t mod (P+Q)<P+Q
We can solve this problem using Chinese Remainder Theorem.
t≡t1(mod 2X+2Y)
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