401. Binary Watch
0 CommentsA binary watch has 4 LEDs on the top which represent the hours (0-11), and the 6 LEDs on the bottom represent the minutes (0-59).
Each LED represents a zero or one, with the least significant bit on the right.
For example, the above binary watch reads “3:25”.
Given a non-negative integer n which represents the number of LEDs that are currently on, return all possible times the watch could represent.
Example:
|
|
Note:
- The order of output does not matter.
- The hour must not contain a leading zero, for example “01:00” is not valid, it should be “1:00”.
- The minute must be consist of two digits and may contain a leading zero, for example “10:2” is not valid, it should be “10:02”.
方法1:回溯法
这是一个典型的回溯法的题目,其实就是在10个位置中选n个,前6位组成Minute,后4位组成Hour.
代码如下:
|
|
方法2:排除法
Ref: https://discuss.leetcode.com/topic/59374/simple-python-java
找到所有Hour和Minute的组合,检查bit count是不是等于num,如果相等,就是所要的结果
|
|
这种做法写起来简单,但是时间复杂度不如第一种好,而且这个题目的考点应该就是回溯法,用第二种方法应该不能过关。
另外:h + ":" + (m >= 10 ? m : "0" + m)
比 String.format("%d:%02d", h, m)
快上不少。