Fast Bit Duplication

View as PDF

Submit solution

Points: 10
Time limit: 1.2s
Memory limit: 64M

Author:
Problem type
Allowed languages
C++

Given 32-bit unsigned integers, duplicate each bit in-place in the integer.

For example:

  • 100012 becomes 11000000112
  • 111102 becomes 11111111002

Implementation

One function:

Copy
unsigned long long duplicatebits(unsigned long long);

Note: The function parameter is an unsigned long long instead of an unsigned int to remove the step of upcasting.

Your function may be called up to 108 times.


Comments

There are no comments at the moment.