IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 欧拉计划 11~20 -> 正文阅读

[数据结构与算法]欧拉计划 11~20

方阵中的最大乘积

#include <bits/stdc++.h>
using namespace std;

int a[30][30], maxx;

int dx[4] = {0, 1, 1, -1};
int dy[4] = {1, 0, 1, 1};

int main() {
	for (int i = 4; i <= 23; i ++) {
		for (int j = 1; j <= 20; j ++) {
			cin >> a[i][j];
		}
	}

	for (int i = 4; i <= 23; i ++) {
		for (int j = 1; j <= 20; j ++) {
			for (int k = 0; k < 4; k ++) {
				int num = 1;
				for (int l = 0; l < 4; l ++) {
					num *= a[i + dx[k] * l][j + dy[k] * l];
				}
				maxx = max(maxx, num);
			}
		}
	}
	cout << maxx;
	
	return 0;
}

多约数的三角形数

#include <iostream>
using namespace std;

int f(int x) {
	int res = 1;
	
	for (int i = 2; i * i <= x; i ++) {
		int p = 0;	//i ^ p
		while (x % i == 0) {
			x /= i;
			p ++;
		}
		res *= (p + 1);
	}
	if (x > 1) res *= 2;
	return res;
}

int main() {
	for (int i = 1; ; i ++) {
		int x = i * (i + 1) / 2;
		if (f(x) > 500) {
			cout << x;
			return 0;
		}
	}
	
	return 0;
}

/*
质因数分解
x = i1^p1 * i2^p2 * i3^p3 * ......
x的约数个数 = (p1 + 1) * (p2 + 1) * (p3 + 1) * ...... 
*/

大整数的和

#include <bits/stdc++.h>
using namespace std;

vector <int> rd() {
	vector <int> res;
	
	string s;
	cin >> s;
	for (int i = s.size() - 1; i >= 0; i --) res.push_back(s[i] - '0');
	return res;
}

vector <int> add(vector <int> a, vector <int> b) {
	vector <int> res;
	
	int t = 0, len = max(a.size(), b.size());
	for (int i = 0; i < len; i ++) {
		if (i < a.size()) t += a[i];
		if (i < b.size()) t += b[i];
		res.push_back(t % 10);
		t /= 10;
	}
	if (t) res.push_back(t);
	
	return res;
}

int main() {
	vector <int> a, s;

	s.push_back(0);
	for (int i = 1; i <= 100; i ++) {
		a = rd();
		s = add(s, a);
	}
	
	for (int i = s.size() - 1; i >= s.size() - 10; i --) cout << s[i];

	return 0;
}

最长考拉兹序列

#include <bits/stdc++.h>
using namespace std;

int main() {
	int maxx = 0, ans;
	
	for (int i = 1; i <= 1000000; i ++) {
		long long x = i, cnt = 1;
		
		while (x > 1) {
			if (x % 2 == 0) x /= 2;
			else x = x * 3 + 1;
			cnt ++;
		}
		
		if (cnt > maxx) {
			maxx = cnt;
			ans = i;
		}
	}
	
	cout << ans;

	return 0;
}

网格路径

#include <bits/stdc++.h>
using namespace std;

long long f[30];

int main() {
  	int n = 21, m = 21;
  
	f[1] = 1;
	for (int i = 1; i <= n; i ++) {
		for (int j = 1; j <= m; j ++) {
			f[j] += f[j - 1];
		}
	}
	cout << f[m];
	
	return 0;
}

幂的数字和

#include <bits/stdc++.h>
using namespace std;

vector <int> mul(vector <int> a, int x) {
	vector <int> res;
	
	int t = 0;	
	for (int i = 0; i < a.size(); i ++) {
		t += a[i] * x;
		res.push_back(t % 10);
		t /= 10;
	}
	while (t) res.push_back(t % 10), t /= 10;
	
	return res;	
}

int main() {
	vector <int> a;
	
	a.push_back(1);	
	for (int i = 1; i <= 1000; i ++) a = mul(a, 2);
	
	int ans = 0;
	for (int i = 0; i < a.size(); i ++) ans += a[i];
	cout << ans;

	return 0;
}

用英文写出1到1000的所有数字需要多少个字母?

#include <bits/stdc++.h>
using namespace std;

int a[10] = {0, 3, 3, 5, 4, 4, 3, 5, 5, 4};	//0 ~ 9
int b[10] = {3, 6, 6, 8, 8, 7, 7, 9, 8, 8};	//10~19
int c[10] = {0, 0, 6, 6, 5, 5, 5, 7, 6, 6};	//00~90

int main() {
	int ans = 0, t;
	for (int i = 1; i < 1000; i ++) {
		t = i / 100;
		
		if (t) {				//有百位数 
			ans += a[t] + 7;	//eg: one hundred
			
			if (i % 100 != 0) {	//不是整百 
				ans += 3;		//and
			}	
		}
		
		t = i / 10 % 10;
		if (t == 0) {
			ans += a[i % 10];	//个位数 
		}
		else if (t == 1) {		//10~19
			ans += b[i % 10];	
		}
		else {					//20~99
			ans += c[t];		//十位数 
			ans += a[i % 10];	//个位数 
		}
	}
	
	ans += 11;	//one thousand
	cout << ans;

	return 0;
}

最大路径和 I

#include <bits/stdc++.h>
using namespace std;

int a[20][20], f[20];

int main() {
	for (int i = 1; i <= 15; i ++) {
		for (int j = 1; j <= i; j ++) {
			cin >> a[i][j];
		}
	}
	
	for (int i = 15; i >= 1; i --) {
		for (int j = 1; j <= 15; j ++) {
			f[j] = max(f[j], f[j + 1]) + a[i][j];
		}
	}
	cout << f[1];

	return 0;
}

周日计数

#include <bits/stdc++.h>
using namespace std;

int a[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
//1901年1月1日:周二 

int main() {
	int x = 2, cnt = 0;
	for (int y = 1901; y <= 2000; y ++) {
		if (y % 4 == 0 && y % 100 != 0 || y % 400 == 0) a[2] = 29;
		else a[2] = 28;
		
		for (int m = 1; m <= 12; m ++) {
			if (x == 0) cnt ++;
			
			x = (x + a[m]) % 7;
		}
	}
	cout << cnt;

	return 0;
}

阶乘数字和

#include <bits/stdc++.h>
using namespace std;

vector <int> mul(vector <int> a, int x) {
	vector <int> res;
	
	int t = 0;
	for (int i = 0; i < a.size(); i ++) {
		t += a[i] * x;
		res.push_back(t % 10);
		t /= 10;
	}
	while (t) res.push_back(t % 10), t /= 10;
	
	return res;
}

int main() {
	vector <int> a;
	
	a.push_back(1);
	for (int i = 1; i <= 100; i ++) a = mul(a, i);
	
	int ans = 0;
	for (int i = 0; i < a.size(); i ++) ans += a[i];
	cout << ans;
	
	return 0;
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-05-10 12:08:32  更:2022-05-10 12:09:55 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 3:43:20-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码