Hexadecimal's Numbers CodeForces - 9C

本文介绍了一个有趣的算法问题:如何计算从1到给定整数n之间,有多少个整数仅由0和1构成。通过深度优先搜索(DFS)的方法,递归地生成所有符合条件的数,并统计其数量。

One beautiful July morning a terrible thing happened in Mainframe: a mean virus Megabyte somehow got access to the memory of his not less mean sister Hexadecimal. He loaded there a huge amount of n different natural numbers from 1 to n to obtain total control over her energy.

But his plan failed. The reason for this was very simple: Hexadecimal didn’t perceive any information, apart from numbers written in binary format. This means that if a number in a decimal representation contained characters apart from 0 and 1, it was not stored in the memory. Now Megabyte wants to know, how many numbers were loaded successfully.

Input
Input data contains the only number n (1 ≤ n ≤ 10^9).

Output
Output the only number — answer to the problem.

Example

Input
10

Output
2

Note
For n = 10 the answer includes numbers 1 and 10.

大致题意:给你一个数n,问从1到n的范围内有多少数,只由0,1组成。

思路:假设一个数x只由0,1组成,那么下一个就只有x*10或者x*10+1这两种可能,所以我们从1开始dfs深搜即可

代码如下

#include <cstdio>  
#include <cstring>  
#include <iostream> 
#include <algorithm>   
#define ll long long

using namespace std; 
int sum=1;
int n;

void dfs(int x)
{
    if(x*10<=n)
    {
        sum++;
        dfs(x*10);
    }
    if(x*10+1<=n)
    {
        sum++;
        dfs(x*10+1);
    }
}
int main()
{
    cin>>n;
    dfs(1);
    cout<<sum<<endl;
    return 0;
} 
在C#中,你可以使用`System.Security.Cryptography`命名空间下的`HashAlgorithm`类及其派生类如`HMACSHA256`来生成HMAC-MD5哈希值。不过MD5并不直接提供Hexadecimal格式的结果,通常需要手动转换。以下是一个简单的步骤: 1. 引入所需命名空间: ```csharp using System; using System.Text; using System.Security.Cryptography; ``` 2. 创建一个字符串密钥(Key)和数据(Message)实例: ```csharp string key = "your_secret_key"; string message = "your_message_to_hash"; ``` 3. 使用HMAC创建一个新的哈希实例,并指定MD5算法: ```csharp byte[] keyBytes = Encoding.UTF8.GetBytes(key); HMACMD5 hmac = new HMACMD5(keyBytes); ``` 4. 计算哈希值: ```csharp byte[] hashValue = hmac.ComputeHash(Encoding.UTF8.GetBytes(message)); ``` 5. 将字节数组转换为十六进制字符串: ```csharp StringBuilder hexStringBuilder = new StringBuilder(); foreach (byte b in hashValue) { hexStringBuilder.Append(b.ToString("X2")); } string hexadecimalHash = hexStringBuilder.ToString(); ``` 完整的代码示例: ```csharp string CalculateHMACMD5(string key, string message) { byte[] keyBytes = Encoding.UTF8.GetBytes(key); HMACMD5 hmac = new HMACMD5(keyBytes); byte[] hashValue = hmac.ComputeHash(Encoding.UTF8.GetBytes(message)); StringBuilder hexStringBuilder = new StringBuilder(); foreach (byte b in hashValue) { hexStringBuilder.Append(b.ToString("X2")); } return hexadecimalHash; } // 调用函数并打印结果 string result = CalculateHMACMD5(key, message); Console.WriteLine($"HMAC-MD5 Hash: {result}");
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值