在C++中查詢N個不同的數字,其按位或等於K
概念
對於給定的兩個整數N和K,我們的任務是確定N個不同的整數,其按位或等於K。如果不存在任何可能的答案,則輸出-1。
輸入
N = 4, K = 6
輸出
6 0 1 2
輸入
N = 11, K = 6
輸出
-1
找不到任何解決方案。
方法
我們知道,如果一系列數字的按位或為K,則K中為0的位索引在所有數字中也必須為零。
因此,我們只需要改變K中位為1的位置。設此計數為Bit_K。
現在,我們可以用Bit_K位建立pow(2, Bit_K)個不同的數字。因此,如果我們將一個數字設為K本身,則其餘N-1個數字可以透過設定每個數字中K為0的位為0,並對其他位位置進行Bit_K位的排列(除了數字K)來構建。
如果pow(2, Bit_K) < N,則我們無法確定任何可能的答案。
示例
// C++ implementation of the approach
#include <bits/stdc++.h>
using namespace std;
#define ll long long int
#define MAX1 32
ll pow2[MAX1];
bool visited1[MAX1];
vector<int> ans1;
// Shows function to pre-calculate
// all the powers of 2 upto MAX
void power_2(){
ll ans1 = 1;
for (int i = 0; i < MAX1; i++) {
pow2[i] = ans1;
ans1 *= 2;
}
}
// Shows function to return the
// count of set bits in x
int countSetBits(ll x1){
// Used to store the count
// of set bits
int setBits1 = 0;
while (x1 != 0) {
x1 = x1 & (x1 - 1);
setBits1++;
}
return setBits1;
}
// Shows function to add num to the answer
// by placing all bit positions as 0
// which are also 0 in K
void add(ll num1){
int point1 = 0;
ll value1 = 0;
for (ll i = 0; i < MAX1; i++) {
// Bit i is 0 in K
if (visited1[i])
continue;
else {
if (num1 & 1) {
value1 += (1 << i);
}
num1 /= 2;
}
}
ans1.push_back(value1);
}
// Shows function to find and print N distinct
// numbers whose bitwise OR is K
void solve(ll n1, ll k1){
// Choosing K itself as one number
ans1.push_back(k1);
// Find the count of set bits in K
int countk1 = countSetBits(k1);
// It is not possible to get N
// distinct integers
if (pow2[countk1] < n1) {
cout << -1;
return;
}
int count1 = 0;
for (ll i = 0; i < pow2[countk1] - 1; i++) {
// Add i to the answer after
// placing all the bits as 0
// which are 0 in K
add(i);
count1++;
// Now if N distinct numbers are generated
if (count1 == n1)
break;
}
// Now print the generated numbers
for (int i = 0; i < n1; i++) {
cout << ans1[i] << " ";
}
}
// Driver code
int main(){
ll n1 = 4, k1 = 6;
// Pre-calculate all
// the powers of 2
power_2();
solve(n1, k1);
return 0;
}輸出
6 0 1 2
廣告
資料結構
網路
關係資料庫管理系統(RDBMS)
作業系統
Java
iOS
HTML
CSS
Android
Python
C語言程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP