logo

Suma igual i XOR

Prova-ho a GfG Practice ' title= #practiceLinkDiv { mostrar: cap !important; }

Donat un nombre enter positiu n, trobeu el nombre de nombres enters positius i tal que 0<= i <= n and n+i = n^i 

Exemples:  

  Input :   n = 7   Output   : 1   Explanation:   7^i = 7+i holds only for only for i = 0 7+0 = 7^0 = 7   Input:   n = 12   Output:   4 12^i = 12+i hold only for i = 0 1 2 3 for i=0 12+0 = 12^0 = 12 for i=1 12+1 = 12^1 = 13 for i=2 12+2 = 12^2 = 14 for i=3 12+3 = 12^3 = 15
Recommended Practice Suma igual i XOR Prova-ho!

Mètode 1 (simple):  
Una solució senzilla és iterar sobre tots els valors de i 0<= i <= n and count all satisfying values.  



C++
/* C++ program to print count of values such  that n+i = n^i */ #include    using namespace std; // function to count number of values less than // equal to n that satisfy the given condition int countValues (int n) {  int countV = 0;  // Traverse all numbers from 0 to n and  // increment result only when given condition  // is satisfied.  for (int i=0; i<=n; i++ )  if ((n+i) == (n^i) )  countV++;  return countV; } // Driver program int main() {  int n = 12;  cout << countValues(n);  return 0; } 
Java
/* Java program to print count of values  such that n+i = n^i */ import java.util.*; class GFG {    // function to count number of values   // less than equal to n that satisfy  // the given condition  public static int countValues (int n)  {  int countV = 0;    // Traverse all numbers from 0 to n   // and increment result only when   // given condition is satisfied.  for (int i = 0; i <= n; i++ )  if ((n + i) == (n ^ i) )  countV++;    return countV;  }    /* Driver program to test above function */  public static void main(String[] args)   {  int n = 12;  System.out.println(countValues(n));    } } // This code is contributed by Arnav Kr. Mandal. 
Python3
# Python3 program to print count # of values such that n+i = n^i # function to count number # of values less than # equal to n that satisfy  # the given condition def countValues (n): countV = 0; # Traverse all numbers # from 0 to n and # increment result only # when given condition # is satisfied. for i in range(n + 1): if ((n + i) == (n ^ i)): countV += 1; return countV; # Driver Code n = 12; print(countValues(n)); # This code is contributed by mits 
C#
/* C# program to print count of values such that n+i = n^i */ using System; class GFG {    // function to count number of values   // less than equal to n that satisfy  // the given condition  public static int countValues (int n)  {  int countV = 0;    // Traverse all numbers from 0 to n   // and increment result only when   // given condition is satisfied.  for (int i = 0; i <= n; i++ )  if ((n + i) == (n ^ i) )  countV++;    return countV;  }    /* Driver program to test above function */  public static void Main()   {  int n = 12;  Console.WriteLine(countValues(n));    } } // This code is contributed by anuj_67. 
PHP
 // PHP program to print count // of values such that n+i = n^i // function to count number // of values less than // equal to n that satisfy  // the given condition function countValues ($n) { $countV = 0; // Traverse all numbers // from 0 to n and // increment result only // when given condition // is satisfied. for ($i = 0; $i <= $n; $i++ ) if (($n + $i) == ($n^$i) ) $countV++; return $countV; } // Driver Code $n = 12; echo countValues($n); // This code is contributed by m_kit ?> 
JavaScript
<script> /* JavaScript program to print count of values such that n+i = n^i */ // function to count number of values less than // equal to n that satisfy the given condition function countValues (n) {  let countV = 0;  // Traverse all numbers from 0 to n and  // increment result only when given condition  // is satisfied.  for (let i=0; i<=n; i++ )  if ((n+i) == (n^i) )  countV++;  return countV; } // Driver program  let n = 12;  document.write(countValues(n)); // This code is contributed by Surbhi Tyagi. </script> 

Sortida:  

4

Complexitat temporal: O(n)

Complexitat espacial: O(1)

Mètode 2 (eficient): 
Una solució eficient és la següent

sabem que (n+i)=(n^i)+2*(n&i)
Per tant, n + i = n ^ i implica n & i = 0
Per tant, el nostre problema es redueix a trobar valors de i tals que n & i = 0. Com trobar el recompte d'aquests parells? Podem utilitzar el recompte de bits no configurats en la representació binària de n. Perquè n & i siguin zero he de desactivar tots els bits establerts de n. Si el kè bit s'estableix a un determinat n kè bit en i ha de ser 0 sempre, sinó el kè bit de i pot ser 0 o 1
Per tant, el total d'aquestes combinacions és 2 ^ (recompte de bits no establerts a n)
Per exemple, considereu n = 12 (Representació binària: 1 1 0 0). 
Tots els valors possibles de i que poden desactivar tots els bits de n són 0 0 0/1 0/1 on 0/1 implica 0 o 1. El nombre d'aquests valors de i és 2^2 = 4. 

El següent és el programa seguint la idea anterior.  

C++
/* c++ program to print count of values such  that n+i = n^i */ #include    using namespace std; // function to count number of values less than // equal to n that satisfy the given condition int countValues(int n) {  // unset_bits keeps track of count of un-set  // bits in binary representation of n  int unset_bits=0;  while (n)  {  if ((n & 1) == 0)  unset_bits++;  n=n>>1;  }  // Return 2 ^ unset_bits  return 1 << unset_bits; } // Driver code int main() {  int n = 12;  cout << countValues(n);  return 0; } 
Java
/* Java program to print count of values  such that n+i = n^i */ import java.util.*; class GFG {    // function to count number of values   // less than equal to n that satisfy   // the given condition  public static int countValues(int n)  {  // unset_bits keeps track of count  // of un-set bits in binary   // representation of n  int unset_bits=0;  while (n > 0)  {  if ((n & 1) == 0)  unset_bits++;  n=n>>1;  }    // Return 2 ^ unset_bits  return 1 << unset_bits;  }    /* Driver program to test above  function */  public static void main(String[] args)   {  int n = 12;  System.out.println(countValues(n));    } }   // This code is contributed by Arnav Kr. Mandal. 
C#
/* C# program to print count of values  such that n+i = n^i */ using System; public class GFG {    // function to count number of values   // less than equal to n that satisfy   // the given condition  public static int countValues(int n)  {    // unset_bits keeps track of count  // of un-set bits in binary   // representation of n  int unset_bits=0;  while (n > 0)  {  if ((n & 1) == 0)  unset_bits++;  n=n>>1;  }    // Return 2 ^ unset_bits  return 1 << unset_bits;  }    /* Driver program to test above  function */  public static void Main(String[] args)   {  int n = 12;  Console.WriteLine(countValues(n));    } } // This code is contributed by umadevi9616 
Python3
# Python3 program to print count of values such  # that n+i = n^i  # function to count number of values less than  # equal to n that satisfy the given condition  def countValues(n): # unset_bits keeps track of count of un-set  # bits in binary representation of n unset_bits = 0 while(n): if n & 1 == 0: unset_bits += 1 n = n >> 1 # Return 2 ^ unset_bits  return 1 << unset_bits # Driver code  if __name__=='__main__': n = 12 print(countValues(n)) # This code is contributed by rutvik 
PHP
 /* PHP program to print count  of values such that n+i = n^i */ // function to count number of  // values less than equal to n  // that satisfy the given  // condition function countValues( $n) { // unset_bits keeps track  // of count of un-set bits  // in binary representation // of n $unset_bits = 0; while ($n) { if (($n & 1) == 0) $unset_bits++; $n = $n >> 1; } // Return 2 ^ unset_bits return 1 << $unset_bits; } // Driver code $n = 12; echo countValues($n); // This code is contributed // by Anuj_67. ?> 
JavaScript
<script> // Javascript program to print count of values // such that n+i = n^i // Function to count number of values // less than equal to n that satisfy // the given condition function countValues(n) {    // unset_bits keeps track of count  // of un-set bits in binary  // representation of n  let unset_bits = 0;    while (n > 0)  {  if ((n & 1) == 0)  unset_bits++;    n = n >> 1;  }    // Return 2 ^ unset_bits  return 1 << unset_bits; }   // Driver Code let n = 12; document.write(countValues(n));   // This code is contributed by susmitakundugoaldanga   </script> 

Sortida:  

4

Complexitat temporal: O(log(n))

Complexitat espacial: O(1)

https://www.youtube.com/watch?v=zhu605v9KOI&feature=youtu.be