[Project Euler] Problem 27

本文介绍了一种寻找连续产生最多素数的二次多项式的算法。通过遍历系数a和b的值,找到使得n² + an + b产生最长连续素数序列的a和b,并给出了实现这一过程的C++代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Euler published the remarkable quadratic formula:

n² + n + 41

It turns out that the formula will produce 40 primes for the consecutive values n = 0 to 39. However, when n = 40, 402 + 40 + 41 = 40(40 + 1) + 41 is divisible by 41, and certainly when n = 41, 41² + 41 + 41 is clearly divisible by 41.

Using computers, the incredible formula  n² − 79n + 1601 was discovered, which produces 80 primes for the consecutive values n = 0 to 79. The product of the coefficients, −79 and 1601, is −126479.

Considering quadratics of the form:

n² + an + b, where |a| < 1000 and |b| < 1000

where |n| is the modulus/absolute value of n
e.g. |11| = 11 and |−4| = 4

Find the product of the coefficients, a and b, for the quadratic expression that produces the maximum number of primes for consecutive values of n, starting with n = 0.

只说一点,b一定是正素数

因为当n为0时,表达式的值为b

直接上代码

#include <iostream>
#include
<cmath>
usingnamespace std;

int prime[168] = {2,3,5,7,11,13,17,19,23,29,31,37,41,
43,47,53,59,61,67,71,73,79,83,89,97,
101,103,107,109,113,127,131,137,139,
149,151,157,163,167,173,179,181,191,
193,197,199,211,223,227,229,233,239,
241,251,257,263,269,271,277,281,283,
293,307,311,313,317,331,337,347,349,
353,359,367,373,379,383,389,397,401,
409,419,421,431,433,439,443,449,457,
461,463,467,479,487,491,499,503,509,
521,523,541,547,557,563,569,571,577,
587,593,599,601,607,613,617,619,631,
641,643,647,653,659,661,673,677,683,
691,701,709,719,727,733,739,743,751,
757,761,769,773,787,797,809,811,821,
823,827,829,839,853,857,859,863,877,
881,883,887,907,911,919,929,937,941,
947,953,967,971,977,983,991,997};

bool isPrime(int a);
int getLength(int i,int a[]);

int main(){
int a[168];
int length[168];
int max =0;
int tmp;
for(int i=0; i<168; i++){
length[i]
= getLength(i,a);
}
for(int i=0; i<168; i++){
if(length[i] > max){
max
= length[i];
tmp
= i;
}
}
cout
<<"a="<< a[tmp] <<"\tb="<< prime[tmp] <<"\tlength="<< length[tmp] << endl;
cout
<<"product="<< a[tmp]*prime[tmp] << endl;
return0;
}

bool isPrime(int a){
bool tmp =true;
int i =0;
while(prime[i] <= sqrt(a)){
if(a%prime[i] ==0){
tmp
=false;
break;
}
i
++;
}
return tmp;
}

int getLength(int i,int a[]){
int length =0;
int at =0;
for(int j=-999; j<999; j++){
int k =0;
int tmp =0;
while((k*k+j*k+prime[i]) >0&& isPrime(k*k+j*k+prime[i])){
tmp
++;
k
++;
}
if(tmp > length){
at
= j;
length
= tmp;
}
}
a[i]
= at;
return length;
}

运行结果:


转载于:https://www.cnblogs.com/xianglan/archive/2011/03/27/1997035.html

电动汽车数据集:2025年3K+记录 真实电动汽车数据:特斯拉、宝马、日产车型,含2025年电池规格和销售数据 关于数据集 电动汽车数据集 这个合成数据集包含许多品牌和年份的电动汽车和插电式车型的记录,捕捉技术规格、性能、定价、制造来源、销售和安全相关属性。每一行代表由vehicle_ID标识的唯一车辆列表。 关键特性 覆盖范围:全球制造商和车型组合,包括纯电动汽车和插电式混合动力汽车。 范围:电池化学成分、容量、续航里程、充电标准和速度、价格、产地、自主水平、排放、安全等级、销售和保修。 时间跨度:模型跨度多年(包括传统和即将推出的)。 数据质量说明: 某些行可能缺少某些字段(空白)。 几个分类字段包含不同的、特定于供应商的值(例如,Charging_Type、Battery_Type)。 各列中的单位混合在一起;注意kWh、km、hr、USD、g/km和额定值。 列 列类型描述示例 Vehicle_ID整数每个车辆记录的唯一标识符。1 制造商分类汽车品牌或OEM。特斯拉 型号类别特定型号名称/变体。型号Y 与记录关联的年份整数模型。2024 电池_类型分类使用的电池化学/技术。磷酸铁锂 Battery_Capacity_kWh浮充电池标称容量,单位为千瓦时。75.0 Range_km整数表示充满电后的行驶里程(公里)。505 充电类型主要充电接口或功能。CCS、NACS、CHAdeMO、DCFC、V2G、V2H、V2L Charge_Time_hr浮动充电的大致时间(小时),上下文因充电方法而异。7.5 价格_USD浮动参考车辆价格(美元).85000.00 颜色类别主要外观颜色或饰面。午夜黑 制造国_制造类别车辆制造/组装的国家。美国 Autonomous_Level浮点自动化能力级别(例如0-5),可能包括子级别的小
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值