|
||||||||||
The NextTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 3053 Accepted Submission(s): 1074 Problem Description Let $L$ denote the number of 1s in integer $D$¡¯s binary representation. Given two integers $S_1$ and $S_2$, we call $D$ a WYH number if $S_1¡ÜL¡ÜS_2$. With a given $D$, we would like to find the next WYH number $Y$, which is JUST larger than $D$. In other words, $Y$ is the smallest WYH number among the numbers larger than $D$. Please write a program to solve this problem. Input The first line of input contains a number $T$ indicating the number of test cases ($T¡Ü300000$). Each test case consists of three integers $D$, $S_1$, and $S_2$, as described above. It is guaranteed that $0¡ÜD<2^{31}$ and $D$ is a WYH number. Output For each test case, output a single line consisting of ¡°Case #X: Y¡±. $X$ is the test case number starting from 1. $Y$ is the next WYH number. Sample Input
Sample Output
Source | ||||||||||
|