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

C++の奇数としてビットごとのORを持つペアの数


配列が与えられると、ビットごとのORが奇数であるペアの数を見つける必要があります。例を見てみましょう。

入力

arr = [1, 2]

出力

1

ビットごとのORが奇数であるペアは1つだけです。そして、ペアは(1、2)です。

アルゴリズム

  • 乱数を使用して配列を初期化します。
  • カウントを0に初期化します。
  • 配列のペアを取得するために2つのループを記述します。
    • すべてのペア間のビットごとのORを計算します。
    • 結果が奇数の場合は、カウントを増やします。
  • カウントを返します。

実装

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

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

出力

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

35

  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