Editorial for DMOPC '15 Contest 5 P4 - Steins;Number
Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.
Submitting an official solution before solving the problem yourself is a bannable offence.
Since , there are over Steins;Numbers within the given constraints, so generating all Steins;Numbers will only give us 20 points.
For full points, we need to make the observation that a Steins;Number can be represented in binary where each bit denotes whether the corresponding power is part of the sum. Using these bitmasks, we can use binary search to find , the smallest Steins;Number that is greater than or equal to , and , the largest Steins;Number that is less than or equal to . The answer is then .
Time Complexity:
Comments