-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprob35.cpp
70 lines (56 loc) · 1.49 KB
/
prob35.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
#include <iostream>
#include <algorithm>
#include <bitset>
#include <cstdio>
#include <cstring>
using namespace std;
const int MAX_BOUND = 1000000;
// sieve of eratosthenes
bitset<MAX_BOUND> *CalculatePrimes()
{
bitset<MAX_BOUND> *primes = new bitset<MAX_BOUND>;
primes->set();
(*primes)[0] = (*primes)[1] = 0;
int c;
for (int p = 2; p < MAX_BOUND; ++p) {
if ((*primes)[p]) {
c = p << 1;
while (c < MAX_BOUND) {
(*primes)[c] = 0;
c += p;
}
}
}
return primes;
}
int main()
{
bitset<MAX_BOUND> *primes = CalculatePrimes();
char pstr[8], rot[8];
bool circular;
int numCircular = 4;
int nrot;
for (int i = 11; i < MAX_BOUND; ++i) {
if ((*primes)[i]) {
sprintf(pstr, "%d", i);
strcpy(rot, pstr);
(*primes)[i] = 0;
circular = true;
while (true) {
rotate(rot, rot + 1, rot + strlen(rot));
if (strcmp(pstr, rot) == 0)
break;
nrot = atoi(rot);
if (!(*primes)[nrot])
circular = false;
(*primes)[nrot] = 0;
}
if (circular) {
numCircular += strlen(pstr);
cout << i << endl;
}
}
}
cout << numCircular - 1 << endl;
return 0;
}