Блог пользователя rtheman

Автор rtheman, 9 лет назад, По-английски

How to solve for(M,N) it the equation of the form M*c1+c2=N*c3+c4, using Extended euclidean algo. Here c1,c2,c3,c4 are known constants.

  • Проголосовать: нравится
  • 0
  • Проголосовать: не нравится

»
9 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

Convert to c1M + c3( - N) = c4 - c2. This is now in the form ax + by = c, solving for x, y, which can be done using Extended Euclidean algorithm.

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I bet it is for yesterday's contest ;)