Project Euler:Problem 61 Cyclical figurate numbers
Triangle, square, pentagonal, hexagonal, heptagonal, and octagonal numbers are all figurate (polygonal) numbers and are generated by the following formulae:
Triangle | P3,n=n(n+1)/2 | 1, 3, 6, 10, 15, ... | ||
Square | P4,n=n2 | 1, 4, 9, 16, 25, ... | ||
Pentagonal | P5,n=n(3n−1)/2 | 1, 5, 12, 22, 35, ... | ||
Hexagonal | P6,n=n(2n−1) | 1, 6, 15, 28, 45, ... | ||
Heptagonal | P7,n=n(5n−3)/2 | 1, 7, 18, 34, 55, ... | ||
Octagonal | P8,n=n(3n−2) | 1, 8, 21, 40, 65, ... |
The ordered set of three 4-digit numbers: 8128, 2882, 8281, has three interesting properties.
- The set is cyclic, in that the last two digits of each number is the first two digits of the next number (including the last number with the first).
- Each polygonal type: triangle (P3,127=8128), square (P4,91=8281), and pentagonal (P5,44=2882), is represented by a different number in the set.
- This is the only set of 4-digit numbers with this property.
Find the sum of the only ordered set of six cyclic 4-digit numbers for which each polygonal type: triangle, square, pentagonal, hexagonal, heptagonal, and octagonal, is represented
by a different number in the set.
又暴力破解了一次ㄟ( ▔, ▔ )ㄏ
一開始没看清题意,我以为这些数依次是满足triangle, square, pentagonal, hexagonal, heptagonal, and octagonal。结果发现无解┑( ̄Д  ̄)┍
- #include <iostream>
- #include <string>
- #include <vector>
- #include <unordered_map>
- #include <time.h>
- using namespace std;
- int triangle[100];
- int pentagonal[10000];
- int hextagonal[10000];
- int heptagonal[10000];
- int octagonal[10000];
- int tri_count = 0;
- void getTriangle()
- {
- int count = 0;
- for (int i = 1; i <= 200; i++)
- {
- int num = i*(i + 1) / 2;
- if (num >1000&&num<10000)
- triangle[count++] = num;
- }
- tri_count = count;
- }
- bool isSqure(int n)
- {
- int i = sqrt(n);
- if (i*i == n&&n>1000&&n<10000)
- return true;
- return false;
- }
- void getPentagonal()
- {
- for (int i = 1; i <= 200; i++)
- {
- int num = i*(3 * i - 1) / 2;
- if (num > 1000 && num < 10000)
- pentagonal[num] = 1;
- }
- }
- bool isPentagonal(int n)
- {
- if (pentagonal[n] == 1)
- return true;
- return false;
- }
- void getHexagonal()
- {
- for (int i = 1; i <= 200; i++)
- {
- int num = i*(2 * i - 1);
- if (num>1000 && num < 10000)
- hextagonal[num] = 1;
- }
- }
- bool isHexagonal(int n)
- {
- if (hextagonal[n] == 1)
- return true;
- return false;
- }
- void getHeptagonal()
- {
- for (int i = 1; i <= 200; i++)
- {
- int num = i*(5 * i - 3) / 2;
- if (num > 1000 && num < 10000)
- heptagonal[num] = 1;
- }
- }
- bool isHeptagonal(int n)
- {
- if (heptagonal[n] == 1)
- return true;
- return false;
- }
- void getOctagonal()
- {
- for (int i = 1; i <= 200; i++)
- {
- int num = i*(3 * i - 2);
- if (num > 1000 && num < 10000)
- octagonal[num] = 1;
- }
- }
- bool isOctagonal(int n)
- {
- if (octagonal[n] == 1)
- return true;
- return false;
- }
- bool(*figurate[5])(int) = { isSqure, isPentagonal, isHexagonal, isHeptagonal, isOctagonal };
- vector<int> GetRandomSequence()
- {
- unordered_map<int, int>tab;
- vector<int>res;
- int num;
- for (int i = 0; i < 5; i++)
- {
- do{
- num = rand() % 5;
- } while (tab.find(num) != tab.end());
- tab.insert(make_pair(num, 1));
- res.push_back(num);
- }
- return res;
- }
- int check()
- {
- int sum = 0;
- srand((int)time(0));
- vector<int>rs = GetRandomSequence();
- for (int i = 0; i < tri_count; i++)
- {
- int a = triangle[i] / 100;
- int b = triangle[i] % 100;
- for (int s = 10; s <= 99; s++)
- {
- if ((*figurate[rs[0]])(b * 100 + s))
- {
- for (int p = 10; p <= 99; p++)
- {
- if ((*figurate[rs[1]])(s * 100 + p))
- {
- for (int hx = 10; hx <= 99; hx++)
- {
- if ((*figurate[rs[2]])(p * 100 + hx))
- {
- for (int hp = 10; hp <= 99; hp++)
- {
- if ((*figurate[rs[3]])(hx * 100 + hp))
- {
- if ((*figurate[rs[4]])(hp * 100 + a))
- {
- sum = triangle[i] + b * 100 + s + s * 100 + p + p * 100 + hx + hx * 100 + hp + hp * 100 + a;
- return sum;
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- return -1;
- }
- int main()
- {
- memset(pentagonal, 0, sizeof(pentagonal));
- memset(hextagonal, 0, sizeof(hextagonal));
- memset(heptagonal, 0, sizeof(heptagonal));
- memset(octagonal, 0, sizeof(octagonal));
- getTriangle();
- getPentagonal();
- getHexagonal();
- getHeptagonal();
- getOctagonal();
- int flag;
- while (true)
- {
- flag = check();
- if (flag != -1)
- break;
- }
- cout << flag << endl;
- system("pause");
- return 0;
- }
把那个随机生成全排列换成next_permutation也是能搞出来的。
Project Euler:Problem 61 Cyclical figurate numbers的更多相关文章
- Project Euler:Problem 42 Coded triangle numbers
The nth term of the sequence of triangle numbers is given by, tn = ½n(n+1); so the first ten triangl ...
- Project Euler:Problem 55 Lychrel numbers
If we take 47, reverse and add, 47 + 74 = 121, which is palindromic. Not all numbers produce palindr ...
- Project Euler:Problem 88 Product-sum numbers
A natural number, N, that can be written as the sum and product of a given set of at least two natur ...
- Project Euler:Problem 87 Prime power triples
The smallest number expressible as the sum of a prime square, prime cube, and prime fourth power is ...
- Project Euler:Problem 89 Roman numerals
For a number written in Roman numerals to be considered valid there are basic rules which must be fo ...
- Project Euler:Problem 93 Arithmetic expressions
By using each of the digits from the set, {1, 2, 3, 4}, exactly once, and making use of the four ari ...
- Project Euler:Problem 28 Number spiral diagonals
Starting with the number 1 and moving to the right in a clockwise direction a 5 by 5 spiral is forme ...
- Project Euler:Problem 47 Distinct primes factors
The first two consecutive numbers to have two distinct prime factors are: 14 = 2 × 7 15 = 3 × 5 The ...
- Project Euler:Problem 63 Powerful digit counts
The 5-digit number, 16807=75, is also a fifth power. Similarly, the 9-digit number, 134217728=89, is ...
随机推荐
- QT+信号有参数与无参数的实现+QT4和QT5在信号和槽使用上的区别
在QT5中,信号有参数和无参数 #ifndef SUBWIDGET_H #define SUBWIDGET_H #include <QWidget> #include <QPushB ...
- js数字转金额,ajax调用接口,后台返回html(完整页面),打开新窗口并写入html
一.转换成金额形式 function toMoney(num){ if(num){ if(isNaN(num)) { alert("金额中含有不能识别的字符"); return; ...
- manjaro利用docker使用MySQL
使用docker安装MySQL并使用 安装docker: sudo yaourt -S docker 使用docker安装mysql: systemctl start docker # 启动docke ...
- Spring Data Redis入门示例:字符串操作(六)
Spring Data Redis对字符串的操作,封装在了ValueOperations和BoundValueOperations中,在集成好了SPD之后,在需要的地方引入: // 注入模板操作实例 ...
- encodeURI()与decodeURI()等转码方法
只针对文本编码 encodeURI() 只针对文本解码 decodeURI()针对文本和特殊字符的编码 encodeURIComponent()针对文本和特殊字符的解码 decodeURIComp ...
- PHP将数据库的数据转换成json格式
header('content-type:application/json;charset=utf8'); $results = array(); while ($row = mysql_f ...
- mysql 数据库 show命令
MySQL中有很多的基本命令,show命令也是其中之一,在很多使用者中对show命令的使用还容易产生混淆,本文汇集了show命令的众多用法. 1. show tables或show tables fr ...
- ps---打开文件及图片保存格式
1.打开图片,可以按Ctrl或者Shift来进行多张图片的选择或者用鼠标框选. 2.勾选图像序列,可以选择命名上有次序的多个图像. 3. PSD是ps里面的标准保存格式,包含颜色.图层.通道.路径.动 ...
- day22 01 初识面向对象----简单的人狗大战小游戏
day22 01 初识面向对象----简单的人狗大战小游戏 假设有一个简单的小游戏:人狗大战 怎样用代码去实现呢? 首先得有任何狗这两个角色,并且每个角色都有他们自己的一些属性,比如任务名字nam ...
- 数据结构( Pyhon 语言描述 ) — — 第4章:数据和链表结构
数据结构是表示一个集合中包含的数据的一个对象 数组数据结构 数组是一个数据结构 支持按照位置对某一项的随机访问,且这种访问的时间是常数 在创建数组时,给定了用于存储数据的位置的一个数目,并且数组的长度 ...