博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
D - Undoubtedly Lucky Numbers CodeForces - 244B(数论 )
阅读量:4136 次
发布时间:2019-05-25

本文共 1603 字,大约阅读时间需要 5 分钟。

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
#include
#include
#include
#include
#include
#define ll long longusing namespace std;ll n;set
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)/~

转载地址:http://zkxvi.baihongyu.com/

你可能感兴趣的文章
HDU 1180 诡异的楼梯(BFS+奇偶步数判断)
查看>>
HDU 2709 Sumsets(DP递推)
查看>>
HDU 5443 The Water Problem(线段树水题)
查看>>
HDU 5438 Ponds(2015ACM长春网络赛+枚举删点+DFS求联通块)
查看>>
HDU 5437 Alisha’s Party(2015ACM长春赛区网络赛+优先队列)
查看>>
HDU 5461 Largest Point(2015沈阳赛区网络赛+技巧水题)
查看>>
HDU 5464 Clarke and problem(DP 01背包)
查看>>
HDU 5455 Fang Fang(2015沈阳赛区网络赛)
查看>>
HDU 2571 命运(DP)
查看>>
HDU 2955 Robberies(01背包+概率)
查看>>
HDU 1203 I NEED A OFFER!(01背包+概率)
查看>>
HDU 1238 Substrings(求公共正反向连续子串)
查看>>
HDU 2717 Catch That Cow(哎!居然没想到用bfs)
查看>>
HDU 25919 新生晚会(水题组合问题)
查看>>
HDU 2612 Find a way(两次bfs)
查看>>
HDU 2188 选拔志愿者(简单博弈+记忆化)
查看>>
HDU 5493 Queue(线段树)
查看>>
HDU 5563 Clarke and five-pointed star(暴力)
查看>>
HDU 3951 Coin Game(博弈取对称思路)
查看>>
HDU 4920 Matrix multiplication(简单矩阵相乘+技巧减少Mod次数)
查看>>