কম্পিউটার

C/C++ এ মডুলার সমীকরণের সমাধানের সংখ্যার জন্য প্রোগ্রাম?


এখানে আমরা মডুলার সমীকরণ সম্পর্কিত একটি আকর্ষণীয় সমস্যা দেখতে পাব। ধরুন আমাদের দুটি মান A এবং B আছে। আমাদের সম্ভাব্য মানের সংখ্যা বের করতে হবে যা পরিবর্তনশীল X নিতে পারে, যেমন (A mod X) =B ধরে।

ধরুন A হল 26, এবং B হল 2। সুতরাং X-এর পছন্দের মান হবে {3, 4, 6, 8, 12, 24} তাহলে গণনা হবে 6। এটাই উত্তর। আসুন আরও ভাল ধারণা পেতে অ্যালগরিদম দেখি।

অ্যালগরিদম

সম্ভাব্যWayCount(a, b) -

begin
   if a = b, then there are infinite solutions
   if a < b, then there are no solutions
   otherwise div_count := find_div(a, b)
   return div_count
end

find_div(a, b) −

begin
   n := a – b
   div_count := 0
   for i in range 1 to square root of n, do
      if n mode i is 0, then
         if i > b, then
            increase div_count by 1
         end if
         if n / i is not same as i and (n / i) > b, then
            increase div_count by 1
         end if
      end if
   done
end

উদাহরণ

#include <iostream>
#include <cmath>
using namespace std;
int findDivisors(int A, int B) {
   int N = (A - B);
   int div_count = 0;
   for (int i = 1; i <= sqrt(N); i++) {
      if ((N % i) == 0) {
         if (i > B)
            div_count++;
         if ((N / i) != i && (N / i) > B) //ignore if it is already counted
            div_count++;
      }
   }
   return div_count;
}
int possibleWayCount(int A, int B) {
   if (A == B) //if they are same, there are infinity solutions
      return -1;
   if (A < B) //if A < B, then there are two possible solutions
      return 0;
   int div_count = 0;
   div_count = findDivisors(A, B);
   return div_count;
}
void possibleWay(int A, int B) {
   int sol = possibleWayCount(A, B);
   if (sol == -1)
      cout << "For A: " << A << " and B: " << B << ", X can take infinite values greater than " << A;
   else
      cout << "For A: " << A << " and B: " << B << ", X can take " << sol << " values";
}
int main() {
   int A = 26, B = 2;
   possibleWay(A, B);
}

আউটপুট

For A: 26 and B: 2, X can take 6 values

  1. C++ এ কেন্দ্রীভূত অনাভুজ সংখ্যার জন্য প্রোগ্রাম

  2. হেক্সাডেসিমেল থেকে দশমিকের জন্য C++ প্রোগ্রাম

  3. C++ এ দশমিক থেকে হেক্সাডেসিমেল রূপান্তরের জন্য প্রোগ্রাম

  4. C++ এ দশমিক থেকে বাইনারি রূপান্তরের জন্য প্রোগ্রাম