【ProjectEuler】ProjectEuler_052(找出最小的正整数x,使得2x, 3x, 4x, 5x和6x都包含同样的数字)

2024-03-06 12:58

本文主要是介绍【ProjectEuler】ProjectEuler_052(找出最小的正整数x,使得2x, 3x, 4x, 5x和6x都包含同样的数字),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

#pragma once#include <windows.h>
#include <vector>
#include <set>using namespace std;class MoonMath
{
public:MoonMath(void);~MoonMath(void);//************************************// Method:    IsInt// Access:    public// Describe:  判断double值在epsilon的范围内是否很接近整数//            如1.00005在epsilon为0.00005以上就很接近整数// Parameter: double doubleValue    要判断的double值// Parameter: double epsilon        判断的精度,0 < epsilon < 0.5// Parameter: INT32 & intValue      如果接近,返回最接近的整数值// Returns:   bool                  接近返回true,否则返回false//************************************static bool IsInt(double doubleValue, double epsilon, INT32 &intValue);//************************************// Method:    Sign// Access:    public// Describe:  获取value的符号// Parameter: T value   要获取符号的值// Returns:   INT32     正数、0和负数分别返回1、0和-1//************************************template <typename T>static INT32 Sign(T value);const static UINT32 MIN_PRIMER = 2;     // 最小的素数//************************************// Method:    IsPrimer// Access:    public// Describe:  判断一个数是否是素数// Parameter: UINT32 num    要判断的数// Returns:   bool          是素数返回true,否则返回false//************************************static bool IsPrimer(UINT32 num);//************************************// Method:    IsIntegerSquare// Access:    public static// Describe:  判断给定的数开平方后是否为整数// Parameter: UINT32 num// Returns:   bool//************************************static bool IsIntegerSquare(UINT32 num);//************************************// Method:    GetDiffPrimerFactorNum// Access:    public static// Describe:  获取num所有的不同质因数// Parameter: UINT32 num// Returns:   set<UINT32>//************************************static set<UINT32> MoonMath::GetDiffPrimerFactorNum(UINT32 num);//************************************// Method:    GetDigitMap// Access:    public// Describe:  获取num包含的数字map// Parameter: UINT32 num// Parameter: UINT16 & digitMap 返回的num的数字map,为2进制// Returns:   bool              如果包含重复的数字,返回false,否则返回true//************************************static bool GetDigitMap(UINT32 num, UINT16 &digitMap);//************************************// Method:    IsSameDigitNum// Access:    public // Describe:  判断N个数字是否都是由相同的数字组成,每个数字都必须包含不同的数字// Parameter: const UINT32 nums[]   N个数字组成的数组// Parameter: UINT32 numCount       数字个数// Returns:   bool//************************************static bool IsNumsHaveSameDigit(const UINT32 nums[], UINT32 numCount);//************************************// Method:    Factorial// Access:    public // Describe:  获得n的阶乘// Parameter: UINT32 n// Returns:   UINT32//************************************static UINT32 Factorial(UINT32 n);//************************************// Method:    Combination// Access:    public // Describe:  求(n,r)的组合// Parameter: UINT32 n// Parameter: UINT32 r// Returns:   UINT32//************************************static UINT32 Combination(UINT32 n,UINT32 r);
};


#include "MoonMath.h"
#include <cmath>
#include <iostream>using namespace std;MoonMath::MoonMath(void)
{
}MoonMath::~MoonMath(void)
{
}template <typename T>
INT32 MoonMath::Sign(T value)
{if(value > 0){return 1;}else if(value == 0){return 0;}else{return -1;}
}bool MoonMath::IsInt(double doubleValue, double epsilon, INT32 &intValue)
{if(epsilon > 0.5 || epsilon < 0){return false;}if(INT32(doubleValue + epsilon) == INT32(doubleValue - epsilon)){return false;}INT32 value = INT32(doubleValue);intValue = (fabs(doubleValue - value) > 0.5) ? (value + MoonMath::Sign(doubleValue)) : (value) ;return true;
}bool MoonMath::IsPrimer(UINT32 num)
{if(num < MIN_PRIMER){return false;}if(num == MIN_PRIMER){return true;}// 判断是否能被2整除if((num & 1) == 0){return false;}UINT32 sqrtOfNum = (UINT32)sqrt((double)num); // num的2次方// 从MIN_PRIMER到sqrt(num),如果任何数都不能被num整除,num是素数,否则不是for(UINT32 i = MIN_PRIMER + 1; i <= sqrtOfNum; i += 2){if(num % i == 0){return false;}}return true;
}bool MoonMath::IsIntegerSquare(UINT32 num)
{UINT32 qurtNum = (UINT32)sqrt((double)num);return (qurtNum * qurtNum) == num;
}set<UINT32> MoonMath::GetDiffPrimerFactorNum(UINT32 num)
{UINT32 halfNum = num / 2;set<UINT32> factors;for(UINT32 i = 2; i <= halfNum; ++i){if(!MoonMath::IsPrimer(i)){continue;}if(num % i == 0){factors.insert(i);while(num % i == 0){num /= i;}}}return factors;
}bool MoonMath::GetDigitMap(UINT32 num, UINT16 &digitMap)
{UINT32 digit = 0;digitMap = 0;while(num != 0){digit = num % 10;num /= 10;// 数字已存在,返回falseif(digitMap & (1 << digit)){return false;}digitMap |= (1 << digit);}return true;
}bool MoonMath::IsNumsHaveSameDigit(const UINT32 nums[], UINT32 numCount)
{UINT16 lastDigitMap = 0;UINT16 currDigitMap = 0;if(numCount < 2){return false;}if(!MoonMath::GetDigitMap(nums[0], lastDigitMap)){return false;}for(UINT32 i = 1; i < numCount; ++i){if(!MoonMath::GetDigitMap(nums[i], currDigitMap)){return false;}if(currDigitMap != lastDigitMap){return false;}}return true;
}UINT32 MoonMath::Factorial(UINT32 n)
{if(n <= 1){return 1;}UINT32 result = 1;for(UINT32 i = 2; i <= n; ++i){result *= i;}if (result==0){cout<<n<<endl;}return result;
}UINT32 MoonMath::Combination(UINT32 n, UINT32 r)
{// C(n,r)=n!/r!/(n-r)!=(r+1)*(r+2)*...*n/1/2/.../(n-r)UINT32 result=1;for (UINT32 i=r+1;i<=n;++i){result*=i;}UINT32 d=n-r;for (UINT32 i=2;i<=d;++i){result/=i;}return result;
}

// Permuted multiples
//     Problem 52
//     It can be seen that the number, 125874, and its double, 251748, contain exactly the same digits, but in a different order.
//
//     Find the smallest positive integer, x, such that 2x, 3x, 4x, 5x, and 6x, contain the same digits.
//
// 题目52:找出最小的正整数x,使得2x, 3x, 4x, 5x和6x都包含同样的数字。
//     125874和它的二倍,251748, 包含着同样的数字,只是顺序不同。
//
//     找出最小的正整数x,使得 2x, 3x, 4x, 5x, 和6x都包含同样的数字。#include <iostream>
#include <windows.h>
#include <ctime>
#include <assert.h>#include <MoonMath.h>using namespace std;// 打印时间等相关信息
class DetailPrinter
{
public:void Start();void End();DetailPrinter();private:LARGE_INTEGER timeStart;LARGE_INTEGER timeEnd;LARGE_INTEGER freq;
};DetailPrinter::DetailPrinter()
{QueryPerformanceFrequency(&freq);
}//************************************
// Method:    Start
// Access:    public
// Describe:  执行每个方法前调用
// Returns:   void
//************************************
void DetailPrinter::Start()
{QueryPerformanceCounter(&timeStart);
}//************************************
// Method:    End
// Access:    public
// Describe:  执行每个方法后调用
// Returns:   void
//************************************
void DetailPrinter::End()
{QueryPerformanceCounter(&timeEnd);cout << "Total Milliseconds is " << (double)(timeEnd.QuadPart - timeStart.QuadPart) * 1000 / freq.QuadPart << endl;const char BEEP_CHAR = '\007';cout << endl << "By GodMoon" << endl << __TIMESTAMP__ << BEEP_CHAR << endl;system("pause");
}/*************************解题开始*********************************///************************************
// Method:    GetMulNum
// Access:    public
// Describe:  获取num的倍数
// Parameter: UINT32 num
// Parameter: UINT32 mulNum[]       倍数存储位置,保存mulNumCount+1个num的倍数
// Parameter: UINT32 mulNumCount    最大倍数
// Returns:   void
//************************************
void GetMulNum(UINT32 num, UINT32 mulNum[], UINT32 mulNumCount)
{for(UINT32 i = 1; i <= mulNumCount; ++i){mulNum[i - 1] = num * i;}
}void TestFun1()
{cout << "TestFun1 OK!" << endl;
}void F1()
{cout << "void F1()" << endl;// TestFun1();DetailPrinter detailPrinter;detailPrinter.Start();/*********************************算法开始*******************************/const UINT32 NUM_COUNT = 6;UINT32 mulNums[NUM_COUNT];UINT32 num;for(num = 1;; ++num){GetMulNum(num, mulNums, ARRAYSIZE(mulNums));if(MoonMath::IsNumsHaveSameDigit(mulNums, ARRAYSIZE(mulNums))){break;}}cout << "The smallest num is " << num << endl;/*********************************算法结束*******************************/detailPrinter.End();
}//主函数
int main()
{F1();return 0;
}/*
void F1()
The smallest num is 142857
Total Milliseconds is 32.823By GodMoon
Thu Mar 28 22:46:09 2013
*/


这篇关于【ProjectEuler】ProjectEuler_052(找出最小的正整数x,使得2x, 3x, 4x, 5x和6x都包含同样的数字)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

从去中心化到智能化:Web3如何与AI共同塑造数字生态

在数字时代的演进中,Web3和人工智能(AI)正成为塑造未来互联网的两大核心力量。Web3的去中心化理念与AI的智能化技术,正相互交织,共同推动数字生态的变革。本文将探讨Web3与AI的融合如何改变数字世界,并展望这一新兴组合如何重塑我们的在线体验。 Web3的去中心化愿景 Web3代表了互联网的第三代发展,它基于去中心化的区块链技术,旨在创建一个开放、透明且用户主导的数字生态。不同于传统

usaco 1.2 Name That Number(数字字母转化)

巧妙的利用code[b[0]-'A'] 将字符ABC...Z转换为数字 需要注意的是重新开一个数组 c [ ] 存储字符串 应人为的在末尾附上 ‘ \ 0 ’ 详见代码: /*ID: who jayLANG: C++TASK: namenum*/#include<stdio.h>#include<string.h>int main(){FILE *fin = fopen (

poj 1258 Agri-Net(最小生成树模板代码)

感觉用这题来当模板更适合。 题意就是给你邻接矩阵求最小生成树啦。~ prim代码:效率很高。172k...0ms。 #include<stdio.h>#include<algorithm>using namespace std;const int MaxN = 101;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int n

poj 1287 Networking(prim or kruscal最小生成树)

题意给你点与点间距离,求最小生成树。 注意点是,两点之间可能有不同的路,输入的时候选择最小的,和之前有道最短路WA的题目类似。 prim代码: #include<stdio.h>const int MaxN = 51;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int P;int prim(){bool vis[MaxN];

poj 2349 Arctic Network uva 10369(prim or kruscal最小生成树)

题目很麻烦,因为不熟悉最小生成树的算法调试了好久。 感觉网上的题目解释都没说得很清楚,不适合新手。自己写一个。 题意:给你点的坐标,然后两点间可以有两种方式来通信:第一种是卫星通信,第二种是无线电通信。 卫星通信:任何两个有卫星频道的点间都可以直接建立连接,与点间的距离无关; 无线电通信:两个点之间的距离不能超过D,无线电收发器的功率越大,D越大,越昂贵。 计算无线电收发器D

poj 1734 (floyd求最小环并打印路径)

题意: 求图中的一个最小环,并打印路径。 解析: ans 保存最小环长度。 一直wa,最后终于找到原因,inf开太大爆掉了。。。 虽然0x3f3f3f3f用memset好用,但是还是有局限性。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#incl

hdu 1102 uva 10397(最小生成树prim)

hdu 1102: 题意: 给一个邻接矩阵,给一些村庄间已经修的路,问最小生成树。 解析: 把已经修的路的权值改为0,套个prim()。 注意prim 最外层循坏为n-1。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstri

poj 2175 最小费用最大流TLE

题意: 一条街上有n个大楼,坐标为xi,yi,bi个人在里面工作。 然后防空洞的坐标为pj,qj,可以容纳cj个人。 从大楼i中的人到防空洞j去避难所需的时间为 abs(xi - pi) + (yi - qi) + 1。 现在设计了一个避难计划,指定从大楼i到防空洞j避难的人数 eij。 判断如果按照原计划进行,所有人避难所用的时间总和是不是最小的。 若是,输出“OPETIMAL",若

poj 2135 有流量限制的最小费用最大流

题意: 农场里有n块地,其中约翰的家在1号地,二n号地有个很大的仓库。 农场有M条道路(双向),道路i连接着ai号地和bi号地,长度为ci。 约翰希望按照从家里出发,经过若干块地后到达仓库,然后再返回家中的顺序带朋友参观。 如果要求往返不能经过同一条路两次,求参观路线总长度的最小值。 解析: 如果只考虑去或者回的情况,问题只不过是无向图中两点之间的最短路问题。 但是现在要去要回

poj 3422 有流量限制的最小费用流 反用求最大 + 拆点

题意: 给一个n*n(50 * 50) 的数字迷宫,从左上点开始走,走到右下点。 每次只能往右移一格,或者往下移一格。 每个格子,第一次到达时可以获得格子对应的数字作为奖励,再次到达则没有奖励。 问走k次这个迷宫,最大能获得多少奖励。 解析: 拆点,拿样例来说明: 3 2 1 2 3 0 2 1 1 4 2 3*3的数字迷宫,走两次最大能获得多少奖励。 将每个点拆成两个