-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblem 32
More file actions
58 lines (53 loc) · 1.67 KB
/
Copy pathproblem 32
File metadata and controls
58 lines (53 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
We shall say that an n-digit number is pandigital if it makes use of all the digits 1 to n exactly once; for example, the 5-digit number, 15234, is 1 through 5 pandigital.
The product 7254 is unusual, as the identity, 39 × 186 = 7254, containing multiplicand, multiplier, and product is 1 through 9 pandigital.
Find the sum of all products whose multiplicand/multiplier/product identity can be written as a 1 through 9 pandigital.
HINT: Some products can be obtained in more than one way so be sure to only include it once in your sum.
*/
#include <iostream>
#include<vector>
#include<string>
#include<set>
#include<algorithm>
using namespace std;
int main() {
int x , y , z;
int sum = 0;
set<int> total;
vector<int> numbers = {1, 2, 3, 4, 5, 6, 7, 8, 9};
do{
for(int i = 1; i < 9; i++){
for(int j = 1; j < 9 - i; j++){
int rem_len = 9 - i - j;
if(rem_len < i || rem_len < j){
break;
}
int pos = 0;
int first_product = 0;
for(x = 0; x < i; x++){
first_product *= 10;
first_product += numbers[pos++];
}
int second_product = 0;
for(y = 0; y < j; y++){
second_product *= 10;
second_product += numbers[pos++];
}
int last_product = 0;
for(z = 0; z < rem_len; z++){
last_product *= 10;
last_product += numbers[pos++];
}
if(first_product * second_product == last_product){
total.insert(last_product);
}
}
}
}
while(std::next_permutation(numbers.begin() , numbers.end()));
for(int n : total){
sum += n;
}
cout << sum <<endl;
return 0;
}