project euler 6~10
程序员文章站
2022-06-08 13:14:23
...
Problem 6 Sum square difference
#include <iostream>
#include <cstdio>
using namespace std;
int work(int n) {
int t1 = 0, t2 = 0;
for(int i = 1; i <= n; i++) {
t1 += i * i;
t2 += i;
}
t2 *= t2;
return t2 - t1;
}
int main(){
printf("%d\n", work(100));
return 0;
}
Problem 7 10001st prime
思路
素数筛法打表
#include <iostream>
#include <cstdio>
#include <cmath>
using namespace std;
const int N = 1e6 + 10;
bool isPrime[N];
int prime[N];
int table(int n) {
int m = (int)sqrt(1.0 * n);
int tot = 0;
fill(isPrime, isPrime + n, true);
isPrime[0] = isPrime[1] = false;
for(int i = 2; i <= n; i++) {
if(isPrime[i]) {
prime[tot++] = i;
for(int j = i*2; j <= n; j += i) {
isPrime[j] = false;
}
}
}
return tot;
}
int main() {
int tot = table(1000000);
int n = 10001;
assert(tot >= n);
printf("%d\n", prime[n-1]);
return 0;
}
Problem 8 Largest product in a series
#include <iostream>
#include <cstdio>
using namespace std;
typedef long long LL;
const int N = 1000 + 10;
LL work() {
char str[N];
for(int i = 0; i < 20; i++) {
scanf(" %s", str + i*50);
}
LL ans = 0;
for(int i = 12; i < 1000; i++) {
LL val = 1;
for(int j = i-12; j <= i; j++) {
val *= str[j]-'0';
}
ans = max(ans, val);
}
return ans;
}
int main() {
printf("%lld\n", work());
return 0;
}
Problem 9 Special Pythagorean triplet
#include <iostream>
#include <cstdio>
using namespace std;
int work() {
int n = 1000, ans = -1;
for(int i = 1; i <= n; ++i) {
for(int j = i+1; j <= n-i; ++j) {
int k = n - i - j;
if(k <= 0) {
break;
}
if(i*i + j*j == k*k) {
ans = i * j * k;
break;
}
}
if(ans != -1) {
break;
}
}
return ans;
}
int main() {
printf("%d\n", work());
return 0;
}
Problem 10 Summation of primes
#include <iostream>
#include <cstdio>
using namespace std;
typedef long long LL;
const int N = 2e6 + 10;
bool isPrime[N];
LL table(int n) {
fill(isPrime, isPrime + n, true);
isPrime[0] = isPrime[1] = false;
LL ans = 0;
for(int i = 2; i <= n; i++) {
if(isPrime[i]) {
ans += i;
for(int j = i*2; j <= n; j += i) {
isPrime[j] = false;
}
}
}
return ans;
}
int main() {
printf("%lld\n", table(2000000));
return 0;
}
上一篇: 这样做可以让你的产品软文与众不同
下一篇: 6种独特方法教你写好产品软文标题
推荐阅读
-
超简单!10分钟学会工作中最长用的ES6
-
win10系统玩极限竞速6闪屏怎么办?windows10系统玩极限竞速6闪屏的多种解决方法
-
解读ASP.NET 5 & MVC6系列教程(10):Controller与Action
-
win10“这台电脑”里的6个子文件夹怎么删除
-
Win10如何关闭IPV6?Win10禁用IPv6的方法
-
win10系统玩极限竞速6闪屏怎么办?windows10系统玩极限竞速6闪屏的多种解决方法
-
小米蓝牙耳机发布 售价79元 6月18日10:00 开卖
-
解读ASP.NET 5 & MVC6系列教程(10):Controller与Action
-
win10“这台电脑”里的6个子文件夹怎么删除
-
2999元!6TB土豪版新小米路由器7月7日上午10点预售