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

C++で合計が2の累乗であるペアの数


配列が与えられた場合、合計が2の累乗であるペアの数を見つける必要があります。例を見てみましょう。

入力

arr = [1, 2, 3]

出力

1

合計が2の累乗であるペアは1つだけで、ペアは(1、3)です。

アルゴリズム

  • 乱数を使用して配列を初期化します。
  • カウントを0に初期化します。
  • 2つのループを記述して、配列のすべてのペアを取得します。
    • すべてのペアの合計を計算します。
    • ビット単位のANDを使用して、合計が2の累乗であるかどうかを確認します。
    • カウントが2の累乗の場合は、カウントを増やします。
  • カウントを返します。

実装

以下は、C++での上記のアルゴリズムの実装です

#include <bits/stdc++.h>
using namespace std;
int get2PowersCount(int arr[], int n) {
   int count = 0;
   for (int i = 0; i < n; i++) {
      for (int j = i + 1; j < n; j++) {
         int sum = arr[i] + arr[j];
         if ((sum & (sum - 1)) == 0) {
            count++;
         }
      }
   }
   return count;
}
int main() {
   int arr[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
   int n = 10;
   cout << get2PowersCount(arr, n) << endl;
   return 0;
}

出力

上記のコードを実行すると、次の結果が得られます。

6

  1. C++での算術数

    算術数は、すべての正の除数の平均が整数である数です。つまり、除数の数が除数の合計を除算できる場合、nは算術数です。 概念をよりよく理解するために例を見てみましょう。 Input : n = 6 Output : YES Explanation : Divisors are 1 , 2 , 3 , 6 Sum = 1+2+3+6 = 12 Number of divisors = 4 Sum of divisors / number of divisor = 12 / 4 = 3 アルゴリズム Step 1 : Calculate the sum of divisors and store i

  2. C++のCHAR_BIT

    CHAR_BITは、charのビット数です。これは、C++言語の「limits.h」ヘッダーファイルで宣言されています。 1バイトあたり8ビットです。 これがC++言語のCHAR_BITの例です 例 #include <bits/stdc++.h> using namespace std; int main() {    int x = 28;    int a = CHAR_BIT*sizeof(x);    stack<bool> s;    cout << "T