欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程资源 > 编程问答 >内容正文

编程问答

D - Undoubtedly Lucky Numbers CodeForces - 244B(数论 )

发布时间:2023/12/15 编程问答 47 豆豆
生活随笔 收集整理的这篇文章主要介绍了 D - Undoubtedly Lucky Numbers CodeForces - 244B(数论 ) 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

Polycarpus loves lucky numbers. Everybody knows that lucky numbers are positive integers, whose decimal representation (without leading zeroes) contain only the lucky digits x and y. For example, if x = 4, and y = 7, then numbers 47, 744, 4 are lucky.

Let’s call a positive integer a undoubtedly lucky, if there are such digits x and y (0 ≤ x, y ≤ 9), that the decimal representation of number a (without leading zeroes) contains only digits x and y.

Polycarpus has integer n. He wants to know how many positive integers that do not exceed n, are undoubtedly lucky. Help him, count this number.

Input
The first line contains a single integer n (1 ≤ n ≤ 109) — Polycarpus’s number.

Output
Print a single integer that says, how many positive integers that do not exceed n are undoubtedly lucky.

Examples
Input
10
Output
10
Input
123
Output
113
Note
In the first test sample all numbers that do not exceed 10 are undoubtedly lucky.

In the second sample numbers 102, 103, 104, 105, 106, 107, 108, 109, 120, 123 are not undoubtedly lucky.

给一个数n,求小于n但是数位相差不能超过二的数字。既然不能超过2,就两边循环。再加上dfs就可以跑出来了。
代码如下:

#include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> #include<set> #define ll long long using namespace std;ll n; set<ll> s;//定义一个集合,就可以快速去重void dfs(int x,int y,ll ans) {s.insert(ans);ll tx=10*ans+x;ll ty=10*ans+y;if(tx&&tx<=n)//0除外dfs(x,y,tx);if(ty&&ty<=n)dfs(x,y,ty); } int main() {while(scanf("%I64d",&n)!=EOF){s.clear();for(int i=0;i<=9;i++)for(int j=0;j<=9;j++){dfs(i,j,0);}printf("%lld\n",s.size()-1);//n除外} }

努力加油a啊,(o)/~

总结

以上是生活随笔为你收集整理的D - Undoubtedly Lucky Numbers CodeForces - 244B(数论 )的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。