C ++
 Computer >> コンピューター >  >> プログラミング >> C ++

代数式の最大値を見つけるためのC++プログラム


これは、任意の代数式の最大値を見つけるためのC ++プログラムです。(x1 + x2 + x3+。。。+xa)*(y1 + y2+。。。+yb)および(a + b )整数が与えられます。数値と残りのb数値のすべての可能な組み合わせを検討し、それらの値を計算して、そこから最大値を導き出すことができます。

アルゴリズム

Begin
   function MaxValue() :
   Arguments:
   a[]=array which store the elements.
   x, y=integers.
   Body of the function:
   1) Find the sum of array elements.
   2) Initialize s = 0.
   3) Make for loop i = 0 to (x + y-1) Shift the integers by 25 so that they become positive .
   4) Declare a boolean array p[i][j] that represents true if sum j can be reachable by choosing i numbers.
   5) Initialization of the array.
   6) Make for loop i = 0 to (x + y)-1 to determine If p[i][j] is true, that means it is possible to select i numbers from (x + y) numbers to sum upto j.
   7) Initialize max_value = -INF.
   8) Make for loop i = 0 to (MAX * MAX + 1)-1 to Check if a particular sum can be reachable by choosing n numbers.
   if (p[x][i])
      Get the actual sum as we shifted the numbers by 25 to avoid negative indexing in array .
   9) Print the max_value.
End
を出力します

#include <bits/stdc++.h>
using namespace std;
#define INF 1e9
#define MAX 25
int MaxValue(int a[], int x, int y) {
   int s= 0;
   for (int i = 0; i < (x + y); i++) {
      s+= a[i];
      a[i] += 25;
   }
   bool p[MAX+1][MAX * MAX + 1];
   //Initialize the array to 01.
   memset(p, 0, sizeof(p));
   p[0][0] = 1;
   for (int i = 0; i < (x + y); i++) {
      //k can be at max x because the
      // left expression has x numbers
      for (int k = min(x, i + 1); k >= 1; k--) {
         for (int j = 0; j < MAX * MAX + 1; j++) {
            if (p[k - 1][j])
            p[k][j + a[i]] = 1;
         }
      }
   }
   int max_value = -INF;
   for (int i = 0; i < MAX * MAX + 1; i++) {
      if (p[x][i]) {
         int tmp = i - 25 * x;
         max_value = max(max_value, tmp * (s - tmp));
      }
   }
   cout << "Maximum Value: " << max_value ;
}
int main() {
   int x = 2, y = 2; //input is taken of
   x and y.
   int ar[] = { 7,6,4,3 };
   MaxValue(ar, x, y);
   return 0;
}

出力

Maximum Value: 100

  1. GCDを見つけるためのC++プログラム

    2つの数値の最大公約数(GCD)は、両方を除算する最大の数値です。 例:45と27の2つの数字があるとします。 45 = 5 * 3 * 3 27 = 3 * 3 * 3 したがって、45と27のGCDは9です。 2つの数値のGCDを見つけるプログラムは次のとおりです。 例 #include <iostream> using namespace std; int gcd(int a, int b) {    if (b == 0)    return a;    return gcd(b, a % b); } int

  2. Pythonで最大消去値を見つけるプログラム

    nums(正の値のみ)という配列があり、一意の要素を含むサブ配列を消去するとします。サブアレイ要素の合計であるスコアを取得します。正確に1つのサブアレイを消去することで得られる最大スコアを見つける必要があります。 したがって、入力がnums =[6,3,2,3,6,3,2,3,6]のような場合、最適なサブ配列は[6,3,2]または[2,3,6]なので、合計は11です。 これを解決するには、次の手順に従います- 見た:=新しい地図 ans:=sum:=0 l:=0 インデックスrと値xnumごとに、実行します xが表示されている場合、 インデックス:=見た[x] l <=イン