You are given an initial string s starting with “0”. The string keeps duplicating as follows. Invert of it is appended to it.
Examples:
Input : k = 2
Output : 1
Initially s = "0".
First Iteration : s = s + s' = "01"
Second Iteration : s = s + s' = "0110"
The digit at index 2 of s is 1.
Input : k = 12
Output : 0
1. Naive Approach
We can build the string s while its length is smaller than or equal to i in the manner mentioned in the problem description and then simply do a lookup of the required index in the string s.
C++
#include <bits/stdc++.h>
using namespace std;
int printIndexVal( int k, string s)
{
while (s.length() <= k) {
string t = "" ;
for ( int i = 0; i < s.size(); i++) {
if (s[i] == '0' )
t += '1' ;
else
t += '0' ;
}
s += t;
}
return s[k] - '0' ;
}
int main()
{
string s = "0" ;
int k = 7;
cout << printIndexVal(k, s) << endl;
return 0;
}
|
Java
class GFG
{
static int printIndexVal( int k, String s)
{
while (s.length() <= k)
{
String t = "" ;
for ( int i = 0 ; i < s.length(); i++)
{
if (s.charAt(i) == '0' )
t += '1' ;
else
t += '0' ;
}
s += t;
}
return s.charAt(k) - '0' ;
}
public static void main(String[] args)
{
String s = "0" ;
int k = 7 ;
System.out.println(printIndexVal(k, s));
}
}
|
Python3
def printIndexVal(k, s):
while ( len (s) < = k):
t = ""
for i in range ( len (s)):
if (s[i] = = '0' ):
t + = '1'
else :
t + = '0'
s + = t
return ord (s[k]) - ord ( '0' )
s = "0"
k = 7
print (printIndexVal(k, s))
|
C#
using System;
class GFG
{
static int printIndexVal( int k, String s)
{
while (s.Length <= k)
{
String t = "" ;
for ( int i = 0; i < s.Length; i++)
{
if (s[i] == '0' )
t += '1' ;
else
t += '0' ;
}
s += t;
}
return s[k] - '0' ;
}
public static void Main(String[] args)
{
String s = "0" ;
int k = 7;
Console.WriteLine(printIndexVal(k, s));
}
}
|
Javascript
<script>
function printIndexVal(k,s)
{
while (s.length <= k)
{
let t = "" ;
for (let i = 0; i < s.length; i++)
{
if (s[i] == '0' )
t += '1' ;
else
t += '0' ;
}
s += t;
}
return s[k] - '0' ;
}
let s = "0" ;
let k = 7;
document.write(printIndexVal(k, s));
</script>
|
Output:
1
Time Complexity: O(k log k).
Better Approach:
Let’s take a look at a few string constructions:
1. s = 0
2. s = 01
3. s = 0110
4. s = 01101001
5. s = 0110100110010110
Let’s consider finding the bit at position 11 in Line 5. The bit value at this position is effectively the complement of the bit at index 3 in Line 4. So we effectively need to find the complement of the bit at index 3.
s[11] = ~(s[3]). However we do not know s[3] either. Let’s move ahead. Now s[3] = ~(s[1]) using the same explanation in Line 3. And s[1] = ~(s[0]). However, s[0] is always 0 from the problem statement.
Plugging these results,
s[11] = ~(~(~0)) = 1 where ‘~’ is the bitwise NOT operator.
Now, k was initially 11 which is 1011 in binary. The next value of k was 3 that is 011. Notice how the first set bit has reduced from the original k. Subsequently, the next value of k is 1. Another set bit has reduced. Finally for k = 0, the last set bit has vanished. So for k = 11 which is 1011 in binary, the number of complements are 3, which is incidentally equal to the number of set bits in 11. Now we see for odd number of inversions the final result is 1. We can derive the same reasoning for even number of inversions yielding a final result as 0.
To count the number of set-bits in an integer, refer to this article – Count set bits in an integer.
CPP
#include <bits/stdc++.h>
using namespace std;
int printIndexVal( int k)
{
unsigned long long int c = 0;
while (k > 0) {
k &= (k - 1);
c++;
}
return c & 1;
}
int main()
{
int k = 12;
cout << printIndexVal(k) << endl;
}
|
Java
import java.util.*;
class GFG {
public static int printIndexVal( int k) {
long c = 0 ;
while (k > 0 ) {
k &= (k - 1 );
c++;
}
return ( int ) (c & 1 );
}
public static void main(String[] args) {
int k = 12 ;
System.out.println(printIndexVal(k));
}
}
|
Python3
import math
def printIndexVal(k):
c = 0
while k > 0 :
k & = (k - 1 )
c + = 1
return c & 1
if __name__ = = "__main__" :
k = 12
print (printIndexVal(k))
|
Javascript
function printIndexVal(k)
{
let c = 0;
while (k > 0) {
k &= (k - 1);
c += 1;
}
return c & 1;
}
( function main() {
const k = 12;
console.log(printIndexVal(k));
})();
|
C#
using System;
public class Program {
public static int PrintIndexVal( int k)
{
ulong c = 0;
while (k > 0) {
k &= (k - 1);
c++;
}
return ( int )(c & 1);
}
public static void Main()
{
int k = 12;
Console.WriteLine(PrintIndexVal(k));
}
}
|
Output:
0
Time Complexity: O(log k)
This article is contributed by Aneesh Bose. If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
References: https://www.hackerrank.com/contests/w32/challenges/duplication