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 = 1Return: ["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".

二进制手表上的数字有一个特点:转换成二进制后,只有1位的数字为1

例如: 2=10

4=100

8=1000

可以利用这一特性进行解题

  1. static public List<string> ReadBinaryWatch(int num) {
  2. List<string> list = new List<string>();
  3. string s = "";
  4. for (int i = 0; i < 12; i++) {
  5. for (int j = 0; j < 60; j++) {
  6. if (BitCount(i) + BitCount(j) == num) {
  7. list.Add(i.ToString() + ":" + NumberToString(j));
  8. }
  9. }
  10. }
  11. return list;
  12. }
  13. static public int BitCount(int number) {
  14. int sum = 0;
  15. while (number > 0) {
  16. if ((number & 1) == 1) {
  17. sum++;
  18. }
  19. number >>= 1;
  20. }
  21. return sum;
  22. }
  23. static public string NumberToString(int number) {
  24. string s = number.ToString();
  25. return s.PadLeft(2, ‘0‘);
  26. }

来自为知笔记(Wiz)

时间: 2024-10-25 05:31:18

401. 二进制手表 Binary Watch的相关文章

401. 二进制手表

二进制手表顶部有 4 个 LED 代表小时(0-11),底部的 6 个 LED 代表分钟(0-59). 每个 LED 代表一个 0 或 1,最低位在右侧. 例如,上面的二进制手表读取 “3:25”. 给定一个非负整数 n 代表当前 LED 亮着的数量,返回所有可能的时间. 案例: 输入: n = 1返回: ["1:00", "2:00", "4:00", "8:00", "0:01", "0:02

LeetCode:二进制手表【401】

LeetCode:二进制手表[401] 题目描述 二进制手表顶部有 4 个 LED 代表小时(0-11),底部的 6 个 LED 代表分钟(0-59). 每个 LED 代表一个 0 或 1,最低位在右侧. 例如,上面的二进制手表读取 "3:25". 给定一个非负整数 n 代表当前 LED 亮着的数量,返回所有可能的时间. 案例: 输入: n = 1 返回: ["1:00", "2:00", "4:00", "8:00

MySQL 二进制日志(Binary Log)

同大多数关系型数据库一样,日志文件是MySQL数据库的重要组成部分.MySQL有几种不同的日志文件,通常包括错误日志文件,二进制日志,通用日志,慢查询日志,等等.这些日志可以帮助我们定位mysqld内部发生的事件,数据库性能故障,记录数据的变更历史,用户恢复数据库等等.二进制日志,也叫binary log,是MySQL Server中最为重要的日志之一,本文主要描述二进制日志. 1.MySQL日志文件系统的组成   a.错误日志:记录启动.运行或停止mysqld时出现的问题.   b.通用日志:

谈谈计算机和网络常用进位制:二进制(Binary)、十进制(Decimal)和十六进制(He

谈谈计算机和网络常用进位制:二进制(Binary).十进制(Decimal)和十六进制(Hexadecimal) 二进制.十进制和十六进制,这几个个进制里算十进制我们最熟悉了,从学前教育或者幼儿园最先接触的数学到再我们日常生活几乎天天和他打交道的下面这十个数字. 但是,话又说回来,你真的理解这10个数字吗?或者说你理解十进制吗? 今天我们就以十进制为切入点顺便谈谈二进制.十六进制以及它们之间的转换.在谈这些进制之前我们先了解一下进制的概念: 所谓进制就是进位制,是人们规定的一种进位方法.进位制/

【leetcode 简单】 第九十三题 二进制手表

二进制手表顶部有 4 个 LED 代表小时(0-11),底部的 6 个 LED 代表分钟(0-59). 每个 LED 代表一个 0 或 1,最低位在右侧. 例如,上面的二进制手表读取 "3:25". 给定一个非负整数 n 代表当前 LED 亮着的数量,返回所有可能的时间. 案例: 输入: n = 1 返回: ["1:00", "2:00", "4:00", "8:00", "0:01",

mysql 二进制日志binary log操作简单命令

show master status \G; #查看当前正在记录的二进制日志 show binary logs; #查看binary log 所有文件列表 show binlog events; #查看第一个binary log日志文件 shaow binlog events in'binary log 文件名' #查看制定binary log文件内容 用mysqlbinlog工具查看 查看制定binary log文件内的制定时间段的代码: mysqlbinlog --start-datetim

二进制日志BINARY LOG清理

mysql> show master logs; +------------------+-----------+ | Log_name | File_size | +------------------+-----------+ | mysql-bin.000001 | 126 | | mysql-bin.000002 | 150 | | mysql-bin.000003 | 150 | | mysql-bin.000004 | 150 | | mysql-bin.000005 | 107 |

[Swift]LeetCode868. 二进制间距 | Binary Gap

Given a positive integer N, find and return the longest distance between two consecutive 1's in the binary representation of N. If there aren't two consecutive 1's, return 0. Example 1: Input: 22 Output: 2 Explanation: 22 in binary is 0b10110. In the

CSAPP lab2 二进制拆弹 binary bombs phase_5 施工中

phase_5 phase_5要求输入一个包含6个字符的字符串.phase_5函数从中读取这些信息,并判断其正确性,如果不正确,则炸弹爆炸. phase_5主要考察学生对指针(数组)机器级表示的掌握程度. 观察框架源文件bomb.c: 从上可以看出: 1.首先调用了read_line()函数,用于输入炸弹秘钥,输入放置在char* input中. 2.调用phase_5函数,输入参数即为input,可以初步判断,phase_5函数将输入的input字符串作为参数. 因此下一步的主要任务是从asm