当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

5491:The Next

题目描述
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.
输入解释
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.
输出解释
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.
输入样例
3
11 2 4
22 3 3
15 2 5
输出样例
Case #1: 12
Case #2: 25
Case #3: 17
来自杭电HDUOJ的附加信息
Recommend wange2014

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-5491

最后修改于 2020-10-25T23:23:08+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 32768/32768K(Java/Others)