Project Euler 题解 #40 Champernowne's constant

2024-04-06 05:38

本文主要是介绍Project Euler 题解 #40 Champernowne's constant,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目:Champernowne's constant

An irrational decimal fraction is created by concatenating the positive integers:

0.123456789101112131415161718192021...

It can be seen that the 12th digit of the fractional part is 1.

If dn represents the nth digit of the fractional part, find the value of the following expression.

d1 ×d10×d100×d1000×d10000×d100000×d1000000

这个题意是从特定的序列中获取特定的数字,重点在于从序列中分析出特点。

解题思路

1.从数字的位数角度看,有下面的规律:
当数字位数为n位时,所包含的的数字总数为:9 ×10 n-1 ×n。
例如:n=3,10~99,数字总数为9 ×10 ×2=180。
2.给定D(Z)时,首先需要知道对应的是数字取至一个几位数。便可以知道数字来自哪个数。
通过第1点可以用加法算出来自N位数。
先算出偏移量offset
那么,来自的数字Y = 10 n-1+offset/N。
取数字Y中的第几位数呢?
index = N - offset%N。
如何取出数x的第n位数呢?公式如下:
具体应用:
求D(100)。
首先可以知道来自一个2位数,N=2。
offset = 100-9-1 = 90
Y = 10+90/2 = 55
index = 2-90%2 = 2
明显Y的第2位为5。
得D(100) = 5。 

代码实现 

//https://projecteuler.net/problem=40
//Champernowne's constant
#include <iostream>
#include <cmath>
using namespace std;
int GetNthDigit(unsigned int x, unsigned int N)
{
return N <= 0? 0 : (x/(int)pow(10.0, int(N - 1)))%10;
}
int D(unsigned int x)
{
unsigned int guard = 0;
int N = 0;
do 
{
++N;
guard += 9 * N * (unsigned int)pow(10.0, int(N - 1));
} while (x > guard);
unsigned int offset = x - 1 - (guard - 9 * N * (unsigned int)pow(10.0, int(N - 1)));
unsigned int num = (unsigned int)pow(10.0, int(N - 1)) + offset/N;
unsigned int index = N - offset%N;
return GetNthDigit(num, index);
}
int _tmain(int argc, _TCHAR* argv[])
{
cout<<D(1)<<endl;
cout<<D(10)<<endl;
cout<<D(100)<<endl;
cout<<D(1000)<<endl;
cout<<D(10000)<<endl;
cout<<D(100000)<<endl;
cout<<D(1000000)<<endl;
system("pause");
return 0;
}
输入:
D(1)  = 1
D(10)  = 1
D(100)  = 5
D(1000)  = 3
D(10000)  = 7
D(100000)  = 2
D(1000000)  = 1
连乘可得210。

这篇关于Project Euler 题解 #40 Champernowne's constant的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/879133

相关文章

C++ | Leetcode C++题解之第393题UTF-8编码验证

题目: 题解: class Solution {public:static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num &

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

C - Word Ladder题解

C - Word Ladder 题解 解题思路: 先输入两个字符串S 和t 然后在S和T中寻找有多少个字符不同的个数(也就是需要变换多少次) 开始替换时: tips: 字符串下标以0开始 我们定义两个变量a和b,用于记录当前遍历到的字符 首先是判断:如果这时a已经==b了,那么就跳过,不用管; 如果a大于b的话:那么我们就让s中的第i项替换成b,接着就直接输出S就行了。 这样

【秋招笔试】9.07米哈游秋招改编题-三语言题解

🍭 大家好这里是 春秋招笔试突围,一起备战大厂笔试 💻 ACM金牌团队🏅️ | 多次AK大厂笔试 | 大厂实习经历 ✨ 本系列打算持续跟新 春秋招笔试题 👏 感谢大家的订阅➕ 和 喜欢💗 和 手里的小花花🌸 ✨ 笔试合集传送们 -> 🧷春秋招笔试合集 🍒 本专栏已收集 100+ 套笔试题,笔试真题 会在第一时间跟新 🍄 题面描述等均已改编,如果和你笔试题看到的题面描述

LeetCode 第414场周赛个人题解

目录 Q1. 将日期转换为二进制表示 原题链接 思路分析 AC代码 Q2. 范围内整数的最大得分 原题链接 思路分析 AC代码 Q3. 到达数组末尾的最大得分 原题链接 思路分析 AC代码 Q4. 吃掉所有兵需要的最多移动次数 原题链接 思路分析 AC代码 Q1. 将日期转换为二进制表示 原题链接 Q1. 将日期转换为二进制表示 思路分析

Debugging Lua Project created in Cocos Code IDE creates “Waiting for debugger to connect” in Win-7

转自 I Installed Cocos Code IDE and created a new Lua Project. When Debugging the Project(F11) the game window pops up and gives me the message waiting for debugger to connect and then freezes. Also a

牛客小白月赛100部分题解

比赛地址:牛客小白月赛100_ACM/NOI/CSP/CCPC/ICPC算法编程高难度练习赛_牛客竞赛OJ A.ACM中的A题 #include<bits/stdc++.h>using namespace std;#define ll long long#define ull = unsigned long longvoid solve() {ll a,b,c;cin>>a>>b>

P2858 [USACO06FEB] Treats for the Cows G/S 题解

P2858 题意 给一个数组。每天把最左或者最右的东西卖掉,第 i i i个东西,第 d a y day day天卖出的价格是 a [ i ] ∗ d a y a[i]*day a[i]∗day。 记忆化搜索 void dfs(int l,int r,int day,ll sum){if(v[l][r]>=sum)return;v[l][r]=sum;if(l>r)//这就是dp答案{

【C++题解】1272. 郭远摘苹果

欢迎关注本专栏《C++从零基础到信奥赛入门级(CSP-J)》 问题:1272. 郭远摘苹果 类型:二维数组 题目描述: 郭远有一天走到了一片苹果林,里面每颗树上都结有不同数目的苹果,郭远身上只能拿同一棵树上的苹果,他每到一棵果树前都会把自己身上的苹果扔掉并摘下他所在树上的苹果并带走(假设郭远会走过每一棵苹果树),问在郭远摘苹果的整个过程中,他身上携带的最多苹果数与最小苹果数的差是多少?

【最新华为OD机试E卷-支持在线评测】机器人活动区域(100分)多语言题解-(Python/C/JavaScript/Java/Cpp)

🍭 大家好这里是春秋招笔试突围 ,一枚热爱算法的程序员 ✨ 本系列打算持续跟新华为OD-E/D卷的三语言AC题解 💻 ACM金牌🏅️团队| 多次AK大厂笔试 | 编程一对一辅导 👏 感谢大家的订阅➕ 和 喜欢💗 🍿 最新华为OD机试D卷目录,全、新、准,题目覆盖率达 95% 以上,支持题目在线评测,专栏文章质量平均 94 分 最新华为OD机试目录: https://blog.