码迷,mamicode.com
首页 > 其他好文 > 详细

【PAT甲级】1049 Counting Ones (30 分)(类似数位DP思想的模拟)

时间:2019-10-02 11:05:35      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:ros   fine   space   包括   c++   soft   输入   mic   clu   

题意:

输入一个正整数N(N<=2^30),输出从1到N共有多少个数字包括1。

代码:

#define HAVE_STRUCT_TIMESPEC
#include<bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n;
cin>>n;
int ans=0;
int l=0,r=0,low_bit=1,yushu=0;//当前位左边的数字,当前位右边的数字,当前位,当前位上的数字
while(n/low_bit){
l=n/(10*low_bit);
yushu=n/low_bit%10;
r=n%low_bit;
if(!yushu)
ans+=l*low_bit;//当前位为1时,左边数字可以从0~l-1,故有l*low_bit
else if(yushu==1)
ans+=l*low_bit+r+1;//当前位为1时,有为0时加上右边数字为0~r,故有l*low_bit+r+1
else
ans+=(l+1)*low_bit;//当前位大于1时,左边数字从0~l,当前位只要为1就符合题意,故有(l+1)*low_bit
low_bit*=10;//当前位左移
}
cout<<ans;
return 0;
}

【PAT甲级】1049 Counting Ones (30 分)(类似数位DP思想的模拟)

标签:ros   fine   space   包括   c++   soft   输入   mic   clu   

原文地址:https://www.cnblogs.com/ldudxy/p/11616744.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!