ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

【leetcode】【easy】401. Binary Watch​​​​​​​

2020-02-28 10:02:18  阅读:318  来源: 互联网

标签:Binary 00 represent int watch Watch num 401 res


401. Binary Watch

A 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:

Input: n = 1
Return: ["1:00", "2:00", "4:00", "8:00", "0:01", "0:02", "0:04", "0:08", "0:16", "0:32"]

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".

题目链接:https://leetcode-cn.com/problems/binary-watch/

 

思路

总体思路还是回溯法。

只是对于数字代表的含义需要进行判定。

最后生成的值需要判断其是否符合时间的要求。

class Solution {
public:
    vector<string> res;
    vector<string> readBinaryWatch(int num) {
        if(num<0 || num>8) return res;
        if(num==0){
            res.push_back("0:00");
        }else{
            getTime(num, 0, 0, 0);
        }
        return res;
    }
    void getTime(int num, int hour, int min, int idx){
        if(num==0){
            if(hour<=11 && min<=59){
                string time = to_string(hour) + ":" + (min<10?"0":"") + to_string(min);
                res.push_back(time);
            }
            return;
        }
        for(int i=idx; i<=10-num; ++i){
            int nhour = hour, nmin = min;
            if(i/6){
                nhour += pow(2, i%6);
            }else{
                nmin += pow(2, i);
            }
            getTime(num-1, nhour, nmin, i+1);
        }
        return;
    }
};

 

lemonade13 发布了128 篇原创文章 · 获赞 2 · 访问量 3823 私信 关注

标签:Binary,00,represent,int,watch,Watch,num,401,res
来源: https://blog.csdn.net/lemonade13/article/details/104550653

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有