博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2719
阅读量:5060 次
发布时间:2019-06-12

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

/*	10 1	20 2	30 3	50 14	60 15	70 16	80 17	90 18	100 19	200 38	300 ...*/// include file#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;// typedeftypedef __int64 LL;// #define read freopen("in.txt","r",stdin)#define write freopen("out.txt","w",stdout)#define Z(a,b) ((a)<<(b))#define Y(a,b) ((a)>>(b))const double eps = 1e-6;const double INFf = 1e100;const int INFi = 1000000000;const LL INFll = (LL)1<<62;const double Pi = acos(-1.0);template
inline T sqr(T a){return a*a;}template
inline T TMAX(T x,T y){ if(x>y) return x; return y;}template
inline T TMIN(T x,T y){ if(x
inline T MMAX(T x,T y,T z){ return TMAX(TMAX(x,y),z);}template
inline T MMIN(T x,T y,T z){ return TMIN(TMIN(x,y),z);}template
inline void SWAP(T &x,T &y){ T t = x; x = y; y = t;}// code beginint DP[10][10];int N;int main(){ read; write; for(int i=0;i<=9;i++) DP[1][i] = i>=4?1:0; for(int i=2;i<=9;i++) { DP[i][1] = DP[i-1][9]+DP[i-1][1]; for(int j=2;j<=9;) { if(j==4) { j++; DP[i][j] = DP[i][j-2]+(int)pow(10.0,i-1)+DP[i][1]; j++; } else { DP[i][j] = DP[i][j-1]+DP[i][1]; j++; } } } while(scanf("%d",&N)&&N) { int ans = 0,t=N; for(int i=1;;i++) { ans += DP[i][N%10]; N/=10; if(N==0) break; } printf("%d: %d\n",t,t-ans); } return 0;}

转载于:https://www.cnblogs.com/ac2012/archive/2011/05/01/2033697.html

你可能感兴趣的文章
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
graphite custom functions
查看>>
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
oracle连接的三个配置文件(转)
查看>>
pytho logging
查看>>
Python内置函数(29)——help
查看>>
oracle导出/导入 expdp/impdp
查看>>
Objective - C基础: 第四天 - 10.SEL类型的基本认识
查看>>
Android TextView加上阴影效果
查看>>
OA项目设计的能力③
查看>>
《梦断代码》读书笔记(三)
查看>>
Java8 Lambda表达应用 -- 单线程游戏server+异步数据库操作
查看>>
[Unity3D]Unity3D游戏开发MatchTarget的作用攀登效果实现
查看>>
AngularJS学习篇(一)
查看>>
关于Xshell无法连接centos6.4的问题
查看>>
css3动画——基本准则
查看>>
输入月份和日期,得出是今年第几天
查看>>
pig自定义UDF
查看>>
Kubernetes 运维学习笔记
查看>>