-
Notifications
You must be signed in to change notification settings - Fork 0
/
49.세 항이 소수이면서 다른 수의 순열이 되는 4자리 수의 등차수열 찾기.cpp
80 lines (67 loc) · 1.5 KB
/
49.세 항이 소수이면서 다른 수의 순열이 되는 4자리 수의 등차수열 찾기.cpp
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include<stdio.h>
#include<math.h> // sqrt
int array[11] = { 0,1,2,3,4,5,6,7,8,9 };
int target[600] = { 0 }; // Permutation(10,4)에서 소수 배열
int i = 0; // Permutation(10,4)에서 소수 배열의 지표
int divide(int a, int b, int c) {
int A[5] = { 0 }, B[5] = { 0 }, C[5] = { 0 };
int j = 0;
for (int i = 1; i <= 4; i++) {
A[j] = a % 10, a /= 10;
B[j] = b % 10, b /= 10;
C[j] = c % 10, c /= 10;
j++;
}
}
int isPrime(int i) { // 소수 판별
for (int j = 2; j <= sqrt(i); j++) {
if (i % j == 0) {
return 0;
}
}
return 1;
}
void swap(int* a, int* b) {
int temp = *a;
*a = *b, *b = temp;
return;
}
void Permutation(int n, int r, int depth)
{
int sum = array[0] * 1000 + array[1] * 100 + array[2] * 10 + array[3];
if (r == depth) {
if (isPrime(sum)) {
if (sum < 1000)
return;
target[i++] = sum;
}
return;
}
for (int i = depth; i < n; i++) {
swap(&array[i], &array[depth]);
Permutation(n, r, depth + 1);
swap(&array[i], &array[depth]);
}
}
int main()
{
Permutation(10, 4, 0);
/* 출력하기
for (int i = 0; i<510; i++) {
printf("%d %d개\n", target[i], i+1);
}
*/
for (int a = 0; a <= 507; a++) {
for (int c = a + 2; c <= 509; c++) {
for (int b = a + 1; b < c; b++) {
if (target[a] + target[b] + target[c] == 3 * target[a] ||
target[a] + target[b] + target[c] == 3 * target[b] ||
target[a] + target[b] + target[c] == 3 * target[c]) {
int p_array[10];
printf("%d 번째 %d %d %d\n", a+1 , target[a], target[b], target[c]);
}
}
}
}
return 0;
}